blob: ee122728f730149e5d7a7df7e5d0bd740efa61ee [file] [log] [blame]
{
"manifest_version": 2,
"name": "Gerrit UI Switcher",
"description": "Easily switch between the current Gerrit UI and the new PolyGerrit UI",
"version": "0.4.1",
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": {
"19": "icon_19.png",
"38": "icon_38.png"
},
"default_title": "Toggle PolyGerrit UI"
},
"content_scripts": [
{
"matches": [
"*://*.googlesource.com/*",
"*://*.git.corp.google.com/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"cookies",
"declarativeContent",
"tabs",
"webRequest",
"*://*.googlesource.com/*",
"*://*.git.corp.google.com/*"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}