A firefox addon allowing the user to enable CORS everywhere by altering http responses.
Report issues to the repository, with enough information to reproduce the problem:
https://github.com/spenibus/cors-everywhere-firefox-addon/issues
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": "CORS Everywhere",
"version": "18.11.13.2044resigned1",
"author": "spenibus",
"description": "Bypass CORS restrictions by altering http responses.",
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "CORS Everywhere",
"default_icon": {
"48": "media/button-48.png"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"applications": {
"gecko": {
"id": "cors-everywhere@spenibus"
}
}
}