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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |