Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "DisCORS",
"description": "This extension allows disabling common security headers (CORS, CSP, X-FRAME-OPTIONS...) for a selected list of targets.",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"storage",
"declarativeNetRequest"
],
"action": {
"default_title": "DisCORS: Disable CORS header for selected targets",
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"64": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
}
}