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

Side by Side Diff: manifest.json

Issue 9053058: Updated to build process changes (Closed)
Patch Set: JSHydra dependency moved to build tools Created Dec. 29, 2012, 8:12 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/adblockplus.js ('k') | metadata » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "manifest_version": 2,
3 "name": "__MSG_name__",
4 "version": "1.3.4",
5 "minimum_chrome_version": "18.0",
6 "description": "__MSG_description__",
7 "default_locale": "en_US",
8 "page_action": {
9 "default_icon": "icons/abp-19.png",
10 "default_title": "Adblock Plus",
11 "default_popup": "popup.html"
12 },
13 "icons": {
14 "16": "icons/abp-16.png",
15 "32": "icons/abp-32.png",
16 "48": "icons/abp-48.png",
17 "128": "icons/abp-128.png"
18 },
19 "permissions": [
20 "tabs", "http://*/*", "https://*/*", "contextMenus", "webRequest", "webReque stBlocking", "unlimitedStorage"
21 ],
22 "background": {
23 "scripts": [
24 "lib/adblockplus_compat.js", "lib/adblockplus.js", "lib/punycode.js",
25 "lib/publicSuffixList.js", "lib/basedomain.js", "lib/sha1.js",
26 "lib/jsbn.js", "lib/rsa.js", "webrequest.js", "background.js"
27 ]
28 },
29 "options_page": "options.html",
30 "content_scripts": [
31 {
32 "matches": ["http://*/*", "https://*/*"],
33 "js": ["include.preload.js"],
34 "run_at": "document_start",
35 "all_frames": true
36 },
37 {
38 "matches": ["http://*/*", "https://*/*"],
39 "js": ["include.postload.js"],
40 "run_at": "document_end",
41 "all_frames": true
42 }
43 ],
44 "web_accessible_resources": ["block.html"]
45 }
OLDNEW
« no previous file with comments | « lib/adblockplus.js ('k') | metadata » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld