Simple Remove Element
Adds a context menu to remove an element from a page
Simple Remove Elementคืออะไร?
Simple Remove Element เป็นส่วนขยายของ Chrome ที่พัฒนาโดย elfakyn และคุณลักษณะหลักของมันคือ "Adds a context menu to remove an element from a page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Remove Element
ดาวน์โหลดไฟล์ส่วนขยาย Simple Remove Element ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Simple Remove Element |
ID | mlfckaclcmmggacnimimmeepailfhokj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj |
คำอธิบาย | Adds a context menu to remove an element from a page |
ขนาดไฟล์ | 6.53 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2019-11-08 |
วันที่เผยแพร่ | 2019-11-05 |
ผู้พัฒนา | elfakyn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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'" } |