blob: 96ac1d6c2228892d3e268fbe8ca4727857139734 [file] [log] [blame]
Tao Zhou2e0ceac2019-11-13 11:15:47 -08001{
Tao Zhou80c941e2020-03-08 22:55:08 +01002 "manifest_version": 2,
3 "name": "Gerrit FE Dev Helper",
4 "description": "This extension can help you development on gerrit sites, frontend specifically",
Tao Zhoufedd6152020-03-14 10:30:46 +01005 "version": "0.0.6",
Tao Zhou80c941e2020-03-08 22:55:08 +01006 "browser_action": {
7 "default_icon": "gray-32.png",
8 "default_title": "Gerrit FE Dev Helper"
9 },
10 "background": {
11 "scripts": [
12 "background.js"
Tao Zhou2e0ceac2019-11-13 11:15:47 -080013 ],
Tao Zhou80c941e2020-03-08 22:55:08 +010014 "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}