| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "__MSG_extensionName__", | 2 "name": "__MSG_extensionName__", |
| 3 "description": "__MSG_extensionDescription__", | 3 "description": "__MSG_extensionDescription__", |
| 4 "default_locale": "en", | 4 "default_locale": "en", |
| 5 "version": "1.5", | 5 "version": "1.5", |
| 6 "manifest_version": 2, | 6 "manifest_version": 2, |
| 7 "minimum_chrome_version": "52", | 7 "minimum_chrome_version": "52", |
| 8 "icons": { | 8 "icons": { |
| 9 "16": "icons/icon16.png", | 9 "16": "icons/icon16.png", |
| 10 "32": "icons/icon32.png", | 10 "32": "icons/icon32.png", |
| 11 "48": "icons/icon48.png", | 11 "48": "icons/icon48.png", |
| 12 "128": "icons/icon128.png" | 12 "128": "icons/icon128.png" |
| 13 }, | 13 }, |
| 14 "background": { |
| 15 "scripts": ["background.js"], |
| 16 "persistent": false |
| 17 }, |
| 14 "content_scripts": [ | 18 "content_scripts": [ |
| 15 { | 19 { |
| 16 "matches": ["<all_urls>"], | 20 "matches": ["<all_urls>"], |
| 17 "js": ["is_editable.js", "content_script.js"], | 21 "js": ["is_editable.js", "content_script.js"], |
| 18 "all_frames": true, | 22 "all_frames": true, |
| 19 "run_at": "document_start" | 23 "run_at": "document_start" |
| 20 } | 24 } |
| 21 ] | 25 ] |
| 22 } | 26 } |
| OLD | NEW |