Remove Element
Creates a contextual menu item to remove an element from the DOM
Remove Elementคืออะไร?
Remove Element เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://weilstreet.com และคุณลักษณะหลักของมันคือ "Creates a contextual menu item to remove an element from the DOM"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove Element
ดาวน์โหลดไฟล์ส่วนขยาย Remove Element ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
คำอธิบาย | Creates a contextual menu item to remove an element from the DOM |
ขนาดไฟล์ | 6.35 KB |
จำนวนการติดตั้ง | 2,523 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2018-09-05 |
วันที่เผยแพร่ | 2018-09-04 |
คะแนน | 3.94/5 รวมทั้งหมด 32 คะแนน |
ผู้พัฒนา | https://weilstreet.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } ] } |