Remove Element
Creates a contextual menu item to remove an element from the DOM
Remove Element là gì?
Remove Element là một tiện ích mở rộng Chrome được phát triển bởi https://weilstreet.com, và tính năng chính của nó là "Creates a contextual menu item to remove an element from the DOM".
Ả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 Remove Element
Tải xuống các tệp mở rộng Remove Element 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
Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary. After installation you must reload any open pages for the extension to work.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
URL Chính Thức | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
Mô tả | Creates a contextual menu item to remove an element from the DOM |
Kích Thước Tệp | 6.35 KB |
Số Lần Cài Đặt | 2,523 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2018-09-05 |
Ngày Phát Hành | 2018-09-04 |
Đánh Giá | 3.94/5 Tổng số 32 Đánh Giá |
Nhà Phát Triển | https://weilstreet.com |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove Element", "version": "1.0.2", "description": "Creates a contextual menu item to remove an element from the DOM", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove.js" ] } ] } |