blob: 57f3e04212d7d71814124fc05a7601a652649294 [file] [log] [blame]
{
"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"
]
}