Simple Remove Element
Adds a context menu to remove an element from a page
Simple Remove Element là gì?
Simple Remove Element là một tiện ích mở rộng Chrome được phát triển bởi elfakyn, và tính năng chính của nó là "Adds a context menu to remove an element from a page".
Ả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 Simple Remove Element
Tải xuống các tệp mở rộng Simple 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
Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone. Extensions that can read data on all websites are scary. This extension is: Open-source Secure Efficient Auditable As simple as can be Designed with minimal permissions (still needs access to the active tab) Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Simple Remove Element |
ID | mlfckaclcmmggacnimimmeepailfhokj |
URL Chính Thức | https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj |
Mô tả | Adds a context menu to remove an element from a page |
Kích Thước Tệp | 6.53 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2019-11-08 |
Ngày Phát Hành | 2019-11-05 |
Nhà Phát Triển | elfakyn |
[email protected] | |
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": "Simple Remove Element", "short_name": "Remove Element", "version": "1.0.4", "description": "Adds a context menu to remove an element from a page", "manifest_version": 2, "icons": { "48": "remove_48.png", "128": "remove_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove_element.js" ], "run_at": "document_idle" } ], "permissions": [ "contextMenus", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'" } |