Inspect and view changes in Free the Fish 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": "Free the Fish",
"version": "0.1.1",
"description": "Spoilers for clickbaits",
"permissions": [
"storage",
"activeTab",
"<all_urls>"
],
"browser_action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
"img/clickbait.png"
],
"content_security_policy": "script-src 'unsafe-inline' 'self' https://www.gstatic.com/ https://*.firebaseio.com https://code.getmdl.io https://www.googleapis.com; object-src 'self'; connect-src 'self' wss://*.firebaseio.com;",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"clickbait.css"
],
"js": [
"clickbait.js"
]
}
],
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}