Web Stripper
Turn off CSS and JS on the fly!
Web Stripper là gì?
Web Stripper là một tiện ích mở rộng Chrome được phát triển bởi Andrey Shevyakov, và tính năng chính của nó là "Turn off CSS and JS on the fly!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Web Stripper
Tải xuống các tệp mở rộng Web Stripper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
"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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Web Stripper |
ID | lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
URL Chính Thức | https://chromewebstore.google.com/detail/web-stripper/lodjfnlhdbgmkjeijpmcnpgaljbkmbcp |
Mô tả | Turn off CSS and JS on the fly! |
Kích Thước Tệp | 137 KB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-05-28 |
Ngày Phát Hành | 2020-05-27 |
Nhà Phát Triển | Andrey Shevyakov |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | http://zitri.tech/privacy/chrome |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |