Content Security Policy Override
Modify the Content Security Policy of web pages.
Was ist Content Security Policy Override?
Content Security Policy Override ist eine Chrome-Erweiterung, die von https://rufflewind.com entwickelt wurde, und ihr Hauptmerkmal ist "Modify the Content Security Policy of web pages.".
Erweiterungsscreenshots
Content Security Policy Override-Erweiterungs-CRX-Datei herunterladen
Laden Sie Content Security Policy Override-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Allows the user to modify the Content Security Policy (CSP) of web pages. Warning: improper use of this add-on can diminish the security of your browser. Do not use unless you really know what you're doing. To edit the configuration, go to chrome://extensions and click Options under Content Security Policy Override. The text area in the Options will automatically save as you edit. Bugs should be reported here: https://github.com/Rufflewind/chrome_cspmod/issues
Grundlegende Informationen zur Erweiterung
Name | Content Security Policy Override |
ID | lhieoncdgamiiogcllfmboilhgoknmpi |
Offizielle URL | https://chromewebstore.google.com/detail/content-security-policy-o/lhieoncdgamiiogcllfmboilhgoknmpi |
Beschreibung | Modify the Content Security Policy of web pages. |
Dateigröße | 13.54 KB |
Installationsanzahl | 2,934 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2018-06-16 |
Veröffentlichungsdatum | 2018-06-15 |
Bewertung | 4.22/5 Insgesamt 9 Bewertungen |
Entwickler | https://rufflewind.com |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Rufflewind/chrome_cspmod |
Hilfeseite URL | https://github.com/Rufflewind/chrome_cspmod/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.2.0", "name": "Content Security Policy Override", "description": "Modify the Content Security Policy of web pages.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "webRequest", "webRequestBlocking", "*:\/\/*\/" ], "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ], "persistent": true } } |