Web Stripper
Turn off CSS and JS on the fly!
Qu'est-ce que Web Stripper ?
Web Stripper est une extension Chrome développée par Andrey Shevyakov, et sa fonction principale est "Turn off CSS and JS on the fly!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Web Stripper
Téléchargez les fichiers d'extension Web Stripper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
"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.
Informations de Base sur l'Extension
Nom | Web Stripper |
ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
URL Officiel | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
Description | Turn off CSS and JS on the fly! |
Taille du Fichier | 137 KB |
Nombre d'Installations | 33 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-05-28 |
Date de Publication | 2020-05-27 |
Développeur | Andrey Shevyakov |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | http://zitri.tech/privacy/chrome |
Langues Prises en Charge | 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\/*" ] } |