Tao Zhou | 2e0ceac | 2019-11-13 11:15:47 -0800 | [diff] [blame] | 1 | { |
Tao Zhou | 80c941e | 2020-03-08 22:55:08 +0100 | [diff] [blame] | 2 | "manifest_version": 2, |
| 3 | "name": "Gerrit FE Dev Helper", |
| 4 | "description": "This extension can help you development on gerrit sites, frontend specifically", |
Tao Zhou | fedd615 | 2020-03-14 10:30:46 +0100 | [diff] [blame^] | 5 | "version": "0.0.6", |
Tao Zhou | 80c941e | 2020-03-08 22:55:08 +0100 | [diff] [blame] | 6 | "browser_action": { |
| 7 | "default_icon": "gray-32.png", |
| 8 | "default_title": "Gerrit FE Dev Helper" |
| 9 | }, |
| 10 | "background": { |
| 11 | "scripts": [ |
| 12 | "background.js" |
Tao Zhou | 2e0ceac | 2019-11-13 11:15:47 -0800 | [diff] [blame] | 13 | ], |
Tao Zhou | 80c941e | 2020-03-08 22:55:08 +0100 | [diff] [blame] | 14 | "persistent": true |
| 15 | }, |
| 16 | "content_scripts": [ |
| 17 | { |
| 18 | "run_at": "document_end", |
| 19 | "matches": [ |
| 20 | "<all_urls>" |
| 21 | ], |
| 22 | "js": [ |
| 23 | "content_script.js" |
| 24 | ] |
| 25 | } |
| 26 | ], |
| 27 | "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https://*", |
| 28 | "permissions": [ |
| 29 | "debugger", |
| 30 | "activeTab", |
| 31 | "<all_urls>", |
| 32 | "notifications", |
| 33 | "storage", |
| 34 | "tabs", |
| 35 | "webRequest", |
| 36 | "webRequestBlocking", |
| 37 | "declarativeContent" |
| 38 | ] |
| 39 | } |