Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: manifest.json

Issue 8401061: Added handling of $sitekey exceptions (Closed)
Patch Set: Created Sept. 25, 2012, 2:08 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/basedomain.js ('k') | qunit/tests/baseDomain.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "manifest_version": 2, 2 "manifest_version": 2,
3 "name": "__MSG_name__", 3 "name": "__MSG_name__",
4 "version": "1.2", 4 "version": "1.2",
5 "minimum_chrome_version": "20.0", 5 "minimum_chrome_version": "20.0",
6 "description": "__MSG_description__", 6 "description": "__MSG_description__",
7 "default_locale": "en", 7 "default_locale": "en",
8 "update_url": "https://adblockplus.org/devbuilds/adblockpluschrome/updates.xml ", 8 "update_url": "https://adblockplus.org/devbuilds/adblockpluschrome/updates.xml ",
9 "page_action": { 9 "page_action": {
10 "default_icon": "icons/abp-19.png", 10 "default_icon": "icons/abp-19.png",
11 "default_title": "Adblock Plus", 11 "default_title": "Adblock Plus",
12 "default_popup": "popup.html" 12 "default_popup": "popup.html"
13 }, 13 },
14 "icons": { 14 "icons": {
15 "16": "icons/abp-16.png", 15 "16": "icons/abp-16.png",
16 "32": "icons/abp-32.png", 16 "32": "icons/abp-32.png",
17 "48": "icons/abp-48.png", 17 "48": "icons/abp-48.png",
18 "128": "icons/abp-128.png" 18 "128": "icons/abp-128.png"
19 }, 19 },
20 "permissions": [ 20 "permissions": [
21 "tabs", "http://*/*", "https://*/*", "contextMenus", "webRequest", "webReque stBlocking", "unlimitedStorage" 21 "tabs", "http://*/*", "https://*/*", "contextMenus", "webRequest", "webReque stBlocking", "unlimitedStorage"
22 ], 22 ],
23 "background": { 23 "background": {
24 "scripts": [ 24 "scripts": [
25 "lib/adblockplus_compat.js", "lib/adblockplus.js", "lib/punycode.js", 25 "lib/adblockplus_compat.js", "lib/adblockplus.js", "lib/punycode.js",
26 "lib/publicSuffixList.js", "lib/basedomain.js", "webrequest.js", 26 "lib/publicSuffixList.js", "lib/basedomain.js", "lib/sha1.js",
27 "background.js" 27 "lib/jsbn.js", "lib/rsa.js", "webrequest.js", "background.js"
28 ] 28 ]
29 }, 29 },
30 "options_page": "options.html", 30 "options_page": "options.html",
31 "content_scripts": [ 31 "content_scripts": [
32 { 32 {
33 "matches": ["http://*/*", "https://*/*"], 33 "matches": ["http://*/*", "https://*/*"],
34 "js": ["include.preload.js"], 34 "js": ["include.preload.js"],
35 "run_at": "document_start", 35 "run_at": "document_start",
36 "all_frames": true 36 "all_frames": true
37 }, 37 },
38 { 38 {
39 "matches": ["http://*/*", "https://*/*"], 39 "matches": ["http://*/*", "https://*/*"],
40 "js": ["include.postload.js", "include.textads.js"], 40 "js": ["include.postload.js", "include.textads.js"],
41 "run_at": "document_end", 41 "run_at": "document_end",
42 "all_frames": true 42 "all_frames": true
43 } 43 }
44 ], 44 ],
45 "web_accessible_resources": ["block.html"] 45 "web_accessible_resources": ["block.html"]
46 } 46 }
OLDNEW
« no previous file with comments | « lib/basedomain.js ('k') | qunit/tests/baseDomain.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld