Inspect and view changes in Bahialize-se source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Bahialize-se",
"description": "Troca todas as imagens do navegador por fotos do Bahia",
"version": "1.0",
"manifest_version": 2,
"browser_action": {
"default_popup": "hello.html",
"default_icon": "icon.ico"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery.js",
"plugin.js"
]
}
],
"web_accessible_resources": [
"images/*"
]
}