aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json46
1 files changed, 29 insertions, 17 deletions
diff --git a/manifest.json b/manifest.json
index 635ea0e..af6ca9e 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,20 +1,32 @@
{
- "manifest_version": 2,
+ "manifest_version": 2,
- "name": "Chrome Copy URLs From All Tabs",
- "description": "What the name says",
- "version": "0.0.1",
-
- "browser_action": {
-
- },
-
- "background": {
- "scripts": ["background.js"],
- "persistent": false
- },
-
- "permissions": [
- "tabs"
- ]
+ "name": "Chrome Copy URLs From All Tabs",
+ "description": "What the name says",
+ "version": "0.1.0",
+
+ "icons": {
+ "16": "images/icon-16.png",
+ "48": "images/icon-48.png",
+ "128": "images/icon-128.png"
+ },
+
+ "browser_action": {
+ "default_icon": {
+ "19": "images/icon-19.png",
+ "38": "images/icon-38.png"
+ }
+ },
+
+ "options_page": "options.html",
+
+ "background": {
+ "scripts": ["chrome-get-urls-from-tabs-in-windows.js", "background.js"],
+ "persistent": false
+ },
+
+ "permissions": [
+ "tabs",
+ "storage"
+ ]
}