Remove unwanted elements
Remove unwanted elements from the page
Remove unwanted elementsคืออะไร?
Remove unwanted elements เป็นส่วนขยายของ Chrome ที่พัฒนาโดย psoft123 และคุณลักษณะหลักของมันคือ "Remove unwanted elements from the page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove unwanted elements
ดาวน์โหลดไฟล์ส่วนขยาย Remove unwanted elements ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Helps in removing the unwanted elements from the page with ease in just few clicks. Can remove any content from the page without changing the layout structure. So now, say bye to distracting contents on pages be it flashy content, advertising banners or some other distracting elements (:p) and just focus on the section that you want to concentrate on. Undo of Remove Elements can be done for last 5 removed elements. Simply click the extension icon (or press Ctrl+Shift+F) to enable it, and click the element you want to erase; To Undo the removal just click Undo button. It's that simple. Enjoy. For any feedback, do leave comment. #removeElement #removeDistraction
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Remove unwanted elements |
ID | ipgipojdkhnfpgmfifkbhhdfgccggpld |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-unwanted-elements/ipgipojdkhnfpgmfifkbhhdfgccggpld |
คำอธิบาย | Remove unwanted elements from the page |
ขนาดไฟล์ | 6.39 KB |
จำนวนการติดตั้ง | 69 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2024-01-21 |
วันที่เผยแพร่ | 2022-06-14 |
คะแนน | 1.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | psoft123 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove unwanted elements", "description": "Remove unwanted elements from the page", "version": "1.0", "manifest_version": 3, "icons": { "48": "icon.png", "128": "icon.png" }, "action": { "default_icon": "icon.png", "default_title": "Click to remove elements" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens Remove unwanted Elements extension" } } } |