Content Security Policy Override
Modify the Content Security Policy of web pages.
Vad är Content Security Policy Override?
Content Security Policy Override är en Chrome-tillägg utvecklad av https://rufflewind.com, och dess huvudfunktion är "Modify the Content Security Policy of web pages.".
Tilläggsskärmbilder
Ladda ner Content Security Policy Override-förlängningens CRX-fil
Ladda ner Content Security Policy Override-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | lhieoncdgamiiogcllfmboilhgoknmpi |
| Officiell webbadress | https://chromewebstore.google.com/detail/content-security-policy-o/lhieoncdgamiiogcllfmboilhgoknmpi |
| Beskrivning | Modify the Content Security Policy of web pages. |
| Filstorlek | 13.54 KB |
| Antal Installationer | 2,934 |
| Aktuell Version | 1.2.0 |
| Senast Uppdaterad | 2018-06-16 |
| Publiceringsdatum | 2018-06-15 |
| Betyg | 4.22/5 Totalt 9 Betyg |
| Utvecklare | https://rufflewind.com |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Rufflewind/chrome_cspmod |
| Hjälpsida URL | https://github.com/Rufflewind/chrome_cspmod/issues |
| Stödda Språk | 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
}
} | |