Inspect and view changes in Cuatro Fantásticos 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": " Cuatro Fantásticos",
"version": "0.0.4",
"manifest_version": 2,
"description": "Utiliza los poderes de Cuatro Fantásticos directamente desde tu navegador.",
"icons": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"web_accessible_resources": [
"icons/16x16.png",
"images/*",
"fonts/*"
],
"browser_action": {
"default_icon": {
"19": "icons/19x19.png",
"38": "icons/38x38.png"
},
"default_title": "Cuatro Fantásticos",
"default_popup": "browseraction/popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/jquery-1.11.3.min.js",
"js/PerspectiveTransform.min.js",
"js/fire-0.62.min.js",
"content.js"
],
"css": [
"general.css"
]
}
]
}