blob: 7e0a2c7b5aee498e8d50a373645ebaaaf319ff38 [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.2",
"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'"
}