aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
authorTeddy Wing2014-03-30 22:26:27 -0400
committerTeddy Wing2014-03-30 22:26:27 -0400
commita0ea6d20f25fe55bdfd8abb3f4d20d0ceb657a90 (patch)
treee9f74275b7a6c5e068e329942c442faa05f63b60 /manifest.json
parentb5f69d0b3426e86507a88e6f3bda5e758a8fd497 (diff)
parentc9f0e75dd6ad1d64ce63710216899cf8bb8155ae (diff)
downloadchrome-copy-urls-from-all-tabs-a0ea6d20f25fe55bdfd8abb3f4d20d0ceb657a90.tar.bz2
Merge branch 'add-download-functionality'
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"
+ ]
}