elementZapper
Disappear at once!
elementZapper là gì?
elementZapper là một tiện ích mở rộng Chrome được phát triển bởi http://www.dsebastien.net, và tính năng chính của nó là "Disappear at once!".
Ả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 elementZapper
Tải xuống các tệp mở rộng elementZapper 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 extension allows you to easily remove elements from Web pages. Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone! The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | efeljanahmlnjhckmohcfbgkfdjdmnog |
URL Chính Thức | https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog |
Mô tả | Disappear at once! |
Kích Thước Tệp | 18.52 KB |
Số Lần Cài Đặt | 459 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2013-05-13 |
Ngày Phát Hành | 2013-05-13 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | http://www.dsebastien.net |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.dsebastien.net |
URL Trang Trợ Giúp | https://github.com/dsebastien/elementZapper |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "elementZapper", "description": "Disappear at once!", "version": "1.1", "icons": { "128": "zap_128.png", "64": "zap_64.png", "32": "zap_32.png", "16": "zap_16.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ] } |