Delete Element
Adds option to context menu to quickly delete a page element
Delete Element là gì?
Delete Element là một tiện ích mở rộng Chrome được phát triển bởi lifeinweeksapp, và tính năng chính của nó là "Adds option to context menu to quickly delete a page element".
Tải xuống tệp CRX của tiện ích mở rộng Delete Element
Tải xuống các tệp mở rộng Delete 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 option to context menu to quickly delete a page element. Does NOT permanently delete the item. Use an ad-blocker for that.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aeafmlpmnmbckkaapajfhdmbbmdapngm |
URL Chính Thức | https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm |
Mô tả | Adds option to context menu to quickly delete a page element |
Kích Thước Tệp | 29.11 KB |
Số Lần Cài Đặt | 53 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2018-05-14 |
Ngày Phát Hành | 2018-05-14 |
Đánh Giá | 3.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | lifeinweeksapp |
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": "Delete Element", "description": "Adds option to context menu to quickly delete a page element", "version": "1.0.0", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab" ], "background": { "scripts": [ "script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |