blob: 1fc4d204c5e31bad4dc8432a34b9d42907d615a5 [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",
"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/*"],
"js": [
"content.js"
]
}
],
"permissions": [
"cookies",
"declarativeContent",
"tabs",
"webRequest",
"*://*.googlesource.com/*"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}