Web Stripper
Turn off CSS and JS on the fly!
Apa itu Web Stripper?
Web Stripper adalah ekstensi Chrome yang dikembangkan oleh Andrey Shevyakov, dan fitur utamanya adalah "Turn off CSS and JS on the fly!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Web Stripper
Unduh file ekstensi Web Stripper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
"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.
Informasi Dasar Ekstensi
Nama | Web Stripper |
ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
URL Resmi | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
Deskripsi | Turn off CSS and JS on the fly! |
Ukuran File | 137 KB |
Jumlah Instalasi | 33 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2020-05-28 |
Tanggal Publikasi | 2020-05-27 |
Pengembang | Andrey Shevyakov |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | http://zitri.tech/privacy/chrome |
Bahasa yang Didukung | 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\/*" ] } |