Inspect and view changes in Film Waiver 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": "Film Waiver",
"version": "0.0.4",
"description": "Get discount codes for film festival submissions",
"permissions": [
"tabs",
"activeTab",
"declarativeContent",
"clipboardWrite",
"https://fw-api.herokuapp.com/"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"16": "images/toolbar-icon-16.png",
"32": "images/toolbar-icon-32.png",
"48": "images/toolbar-icon-48.png",
"128": "images/toolbar-icon-128.png"
},
"default_title": "Film Waiver",
"default_popup": "popup.html"
},
"icons": {
"16": "images/toolbar-icon-16.png",
"32": "images/toolbar-icon-32.png",
"48": "images/toolbar-icon-48.png",
"128": "images/toolbar-icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://filmfreeway.com/*",
"https://filmfreeway.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"manifest_version": 2
}