Remove HTML Elements
Easily remove desired HTML5 elements with just one click!
Remove HTML Elementsคืออะไร?
Remove HTML Elements เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sevina และคุณลักษณะหลักของมันคือ "Easily remove desired HTML5 elements with just one click!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove HTML Elements
ดาวน์โหลดไฟล์ส่วนขยาย Remove HTML Elements ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Remove HTML Elements add-on let you easily remove desired elements in any HTML5 webpage. Simply click on the toolbar button to activate the add-on. Please note that this add-on requires "user action" to be activated. Once it is active, please hover on any element within the page with your mouse. When the mouse pointer is over any HTML5 element, it will highlighted with red color. Now, when you click on the highlighted element, it will be removed from the page. Please note that, this add-on does not delete the elements from the page, instead, it changes the display property to "none". The add-on supports undo operation via (Ctrl + Z) keyboard combination. If you found a bug to report, or have a feature request in mind, please fill out the bug report form in the add-on's homepage (https://mybrowseraddon.com/remove-html-elements.html).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Remove HTML Elements |
ID | enegojdnkeicfoiknhfjaedhlckeahmf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-html-elements/enegojdnkeicfoiknhfjaedhlckeahmf |
คำอธิบาย | Easily remove desired HTML5 elements with just one click! |
ขนาดไฟล์ | 33.31 KB |
จำนวนการติดตั้ง | 2,176 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2023-02-28 |
วันที่เผยแพร่ | 2018-11-26 |
คะแนน | 3.73/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | Sevina |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mybrowseraddon.com/remove-html-elements.html |
URL หน้าช่วยเหลือ | https://mybrowseraddon.com/remove-html-elements.html |
URL หน้านโยบายความเป็นส่วนตัว | https://mybrowseraddon.com/privacy-policy/developer/sevina.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.3", "manifest_version": 3, "offline_enabled": true, "name": "Remove HTML Elements", "homepage_url": "https:\/\/mybrowseraddon.com\/remove-html-elements.html", "description": "Easily remove desired HTML5 elements with just one click!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "data\/content_script\/icons\/remove.png" ] } ], "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_title": "Remove HTML Elements", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |