Inspect and view changes in Dicionário 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
{
"manifest_version": 2,
"name": "Dicionário",
"version": "0.0.1",
"author": "MCA",
"description": "Facilita a sua buscar por significados em páginas da web.",
"icons": {
"48": "icons/d-48.png",
"96": "icons/d-96.png"
},
"background": {
"scripts": [
"menu.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"dicionario.js"
]
}
],
"permissions": [
"http://*/*",
"https://*/*",
"contextMenus",
"storage",
"cookies",
"webRequest",
"webRequestBlocking",
"tabs",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{2081179e-a3f7-476e-a060-3b4e70fbf822}"
}
}
}