disable-HTML
Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.
disable-HTML là gì?
disable-HTML là một tiện ích mở rộng Chrome được phát triển bởi Daniel Lucks, và tính năng chính của nó là "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.".
Ả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 disable-HTML
Tải xuống các tệp mở rộng disable-HTML 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
This extensions provides a control panel to disable and enable browser settings like CSS, Javascript, Images, Cookies and Popups. Just click the icon and the control panel will show up. You will see simple on/off switches to turn on and turn off the settings. So you can easily check how your website works without Javascript or without any images loaded. You also can check your websites behavior, if a user has blocked your cookies or popups. You want to see your website without any CSS applied to it? No problem, just disable CSS in the control panel.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | disable-HTML |
ID | lfhjgihpknekohffabeddfkmoiklonhm |
URL Chính Thức | https://chromewebstore.google.com/detail/disable-html/lfhjgihpknekohffabeddfkmoiklonhm |
Mô tả | Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups. |
Kích Thước Tệp | 21.64 KB |
Số Lần Cài Đặt | 28,523 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2013-12-30 |
Ngày Phát Hành | 2013-12-30 |
Đánh Giá | 4.45/5 Tổng số 47 Đánh Giá |
Nhà Phát Triển | Daniel Lucks |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "disable-HTML", "description": "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.", "version": "0.1.0", "permissions": [ "tabs", "contentSettings", "storage", "*:\/\/*\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": { "default_icon": "images\/icon-24-browser.png", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |