| { |
| "manifest_version": 2, |
| "name": "Gerrit FE Dev Helper", |
| "description": "This extension can help you development on gerrit sites, frontend specifically", |
| "version": "0.0.14", |
| "browser_action": { |
| "default_icon": "gray-32.png", |
| "default_title": "Gerrit FE Dev Helper" |
| }, |
| "background": { |
| "scripts": [ |
| "background.js" |
| ], |
| "persistent": true |
| }, |
| "content_scripts": [ |
| { |
| "run_at": "document_end", |
| "matches": [ |
| "https://*.git.corp.google.com/*", |
| "https://*.staging-git.corp.google.com/*", |
| "https://*.googlesource.com/*" |
| ], |
| "js": [ |
| "content_script.js" |
| ] |
| } |
| ], |
| "content_security_policy": "script-src 'self'; object-src 'self';", |
| "permissions": [ |
| "activeTab", |
| "<all_urls>", |
| "storage", |
| "tabs", |
| "webRequest", |
| "webRequestBlocking" |
| ] |
| } |