Layer Killer
This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.
Layer Killerคืออะไร?
Layer Killer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mattogodoy และคุณลักษณะหลักของมันคือ "This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Layer Killer
ดาวน์โหลดไฟล์ส่วนขยาย Layer Killer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you tired of those dark layers above websites that force you to click on strange buttons or post on your social networks to see the content of said web? This extension allows you to remove such layer simply by clicking on them. To use it, you just need to click on the extension icon, and as it turns red, click on the item you want to delete and it will disappear. Repeat with all the elements you want. That's it! Enjoy.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Layer Killer |
ID | llhefklpdibfnnamgmhcnomibnefobbh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/layer-killer/llhefklpdibfnnamgmhcnomibnefobbh |
คำอธิบาย | This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click. |
ขนาดไฟล์ | 22.13 KB |
จำนวนการติดตั้ง | 553 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2022-09-24 |
วันที่เผยแพร่ | 2015-06-03 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | mattogodoy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Layer Killer", "short_name": "Layer Killer", "version": "0.2", "homepage_url": "https:\/\/matto.io", "description": "This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": { "19": "img\/icon_19.png", "38": "img\/icon_38.png" }, "default_title": "Layer Killer" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "notifications" ], "web_accessible_resources": [ "img\/*" ], "manifest_version": 2 } |