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是由mattogodoy開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.”。
擴展截圖
下載Layer Killer擴展crx文件
下載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 |
官方網址 | 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 } |