| OLD | NEW |
| 1 { | 1 { |
| 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDuUZGKCDbff6IRaxa4Pue7PPkxwPaNhG
T3JEqppEsNWFjM80imEdqMbf3lrWqEfaHgaNku7nlpwPO1mu3/4Hr+XdNa5MhfnOnuPee4hyTLwOs3Vz
z81wpbdzUxZSi2OmqMyI5oTaBYICfNHLwcuc65N5dbt6WKGeKgTpp4v7j7zwIDAQAB", | 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDuUZGKCDbff6IRaxa4Pue7PPkxwPaNhG
T3JEqppEsNWFjM80imEdqMbf3lrWqEfaHgaNku7nlpwPO1mu3/4Hr+XdNa5MhfnOnuPee4hyTLwOs3Vz
z81wpbdzUxZSi2OmqMyI5oTaBYICfNHLwcuc65N5dbt6WKGeKgTpp4v7j7zwIDAQAB", |
| 3 "version": "1.0.0.0", | 3 "version": "1.0.0.0", |
| 4 "name": "__MSG_chrome_extension_name__", | 4 "name": "__MSG_chrome_extension_name__", |
| 5 "description": "__MSG_chrome_extension_description__", | 5 "description": "__MSG_chrome_extension_description__", |
| 6 "icons": { | 6 "icons": { |
| 7 "128": "icon_128.png" | 7 "128": "icon_128.png" |
| 8 }, | 8 }, |
| 9 "default_locale": "en_US", | 9 "default_locale": "en_US", |
| 10 "toolstrips": [ | |
| 11 { | |
| 12 "path": "toolstrip1.html", | |
| 13 "mole": "lorem_ipsum.html", | |
| 14 "mole_height": 200 | |
| 15 }, | |
| 16 "toolstrip2.html" | |
| 17 ], | |
| 18 "background_page": "backgroundpage.html", | 10 "background_page": "backgroundpage.html", |
| 19 "permissions": ["tabs", "http://*.google.com/*", "https://*.google.com/*"], | 11 "permissions": ["tabs", "http://*.google.com/*", "https://*.google.com/*"], |
| 20 "content_scripts": [ | 12 "content_scripts": [ |
| 21 { | 13 { |
| 22 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"]
, | 14 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"]
, |
| 23 "js": ["script1.js", "script2.js"], | 15 "js": ["script1.js", "script2.js"], |
| 24 "css": ["style1.css", "style2.css", "style2.css"] | 16 "css": ["style1.css", "style2.css", "style2.css"] |
| 25 }, | 17 }, |
| 26 { | 18 { |
| 27 "matches": ["http://*.news.com/*"], | 19 "matches": ["http://*.news.com/*"], |
| 28 "js": ["js_files/script3.js"] | 20 "js": ["js_files/script3.js"] |
| 29 } | 21 } |
| 30 ] | 22 ] |
| 31 } | 23 } |
| OLD | NEW |