Web Stripper
Turn off CSS and JS on the fly!
Hvad er Web Stripper?
Web Stripper er en Chrome-udvidelse udviklet af Andrey Shevyakov, og dens hovedfunktion er "Turn off CSS and JS on the fly!".
Udvidelsesskærmbilleder
Download Web Stripper-udvidelses-CRX-fil
Download Web Stripper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
"Web Stripper" is a neat tiny Chrome extension that provides the web-development assistance functionality.
Current features:
* Disable CSS
* Disable JS
Feel free to leave the feedback suggesting the features to implement in the future versions. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
| Officiel URL | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
| Beskrivelse | Turn off CSS and JS on the fly! |
| Filstørrelse | 137 KB |
| Antal Installationer | 33 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2020-05-28 |
| Udgivelsesdato | 2020-05-27 |
| Udvikler | Andrey Shevyakov |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | http://zitri.tech/privacy/chrome |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Web Stripper",
"short_name": "Web Stripper",
"description": "Turn off CSS and JS on the fly!",
"version": "1.0",
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"browser_action": {
"default_popup": "html\/popup.html",
"default_title": "CSS And JS Stripper"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"persistent": false,
"page": "html\/background.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"script\/loader.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"src\/*",
"img\/*",
"font\/*"
]
} | |