Web Stripper
Turn off CSS and JS on the fly!
Co to jest Web Stripper?
Web Stripper to rozszerzenie Chrome opracowane przez Andrey Shevyakov, a jego główną funkcją jest „Turn off CSS and JS on the fly!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Web Stripper
Pobierz pliki rozszerzeń Web Stripper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
"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.
Podstawowe informacje o rozszerzeniu
Nazwa | Web Stripper |
ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
Oficjalny URL | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
Opis | Turn off CSS and JS on the fly! |
Rozmiar pliku | 137 KB |
Liczba instalacji | 33 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-05-28 |
Data Publikacji | 2020-05-27 |
Deweloper | Andrey Shevyakov |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | http://zitri.tech/privacy/chrome |
Obsługiwane Języki | 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\/*" ] } |