diff --git a/README b/README index 3e37d8b..38dfd24 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ This Chrome extension puts a resize button inside the Freshbooks Timer so you can quickly resize the window and continue working with it in the corner of your screen. -TO INSTALL: Download this (if it's zipped, unzip it) to a convenient location. Then in Chrome go to chrome://extensions/ and click Load Unpacked Extension. Choose the folder that contains these files. +TO INSTALL: Download this (if it's zipped, unzip it) to a convenient location. Then in Chrome go to chrome://extensions/ and click Load Unpacked Extension (click Developer Mode if needed.) Choose the folder that contains these files. Written by Will Bradley, 2013, released to the public domain (see the UNLICENSE file for more.) diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..4b15812 --- /dev/null +++ b/icon.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icon128.png b/icon128.png new file mode 100644 index 0000000..b633a6d Binary files /dev/null and b/icon128.png differ diff --git a/icon48.png b/icon48.png new file mode 100644 index 0000000..c6493dd Binary files /dev/null and b/icon48.png differ diff --git a/manifest.json b/manifest.json index c7f788f..5074203 100644 --- a/manifest.json +++ b/manifest.json @@ -1,13 +1,16 @@ { "manifest_version": 2, - "name": "Freshbooks Timer Resizer", - "description": "This extension lets you easily minimize the Freshbooks Timesheet timer window.", - "version": "1.0", + "name": "Timer Resizer for FreshBooks", + "description": "This extension lets you easily minimize the FreshBooks Timesheet / Time Tracking timer window to give you more screen space while you work. (Not affiliated with or endorsed by FreshBooks in any way.)", + "version": "1.1", + + "icons": { "48": "icon48.png", + "128": "icon128.png" }, "content_scripts": [ { - "matches": ["https://*.freshbooks.com/internal.php*"], + "matches": ["https://*.freshbooks.com/internal*"], "js": ["freshbooks-resizer.js","injected.js"] } ],