Click to Remove Element
Remove annoying elements with a single click
Click to Remove Element란 무엇입니까?
Click to Remove Element은(는) https://blade.sk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove annoying elements with a single click"입니다.
확장 프로그램 스크린샷
Click to Remove Element 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to remove any element from a website. Temporarily or permanently. Be it an advertisment missed by your ad-blocker, fixed menu, distracting GIF image, overly animated slideshow or anything else getting in your way. Features: - easily remove multiple elements in a row (no need for a cumbersome context menu) - highlights elements under the cursor - customizable keyboard shortcut for activation - remember removed elements for a particular website or hide only temporarily - works flawlessly with iframes, embeds and ads - minimal memory and performance footprint - power user feature - customize CSS selectors New in v3: - preview which elements were removed - use space to remove elements resistant to mouse clicks - improved CSS selectors - more resilient UI - the much requested import/export feature - undo removed elements (Ctrl+Z / ⌘+Z) - dark mode
확장 프로그램 기본 정보
이름 | Click to Remove Element |
ID | jcgpghgjhhahcefnfpbncdmhhddedhnk |
공식 URL | https://chromewebstore.google.com/detail/click-to-remove-element/jcgpghgjhhahcefnfpbncdmhhddedhnk |
설명 | Remove annoying elements with a single click |
파일 크기 | 28.63 KB |
설치 횟수 | 66,648 |
현재 버전 | 3.1.5 |
최근 업데이트 | 2023-11-29 |
출시 날짜 | 2020-05-17 |
평점 | 4.17/5 총 481 개의 평점 |
개발자 | https://blade.sk |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://blade.sk/ |
도움말 페이지 URL | http://blade.sk/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Click to Remove Element", "version": "3.1.5", "manifest_version": 3, "description": "Remove annoying elements with a single click", "icons": { "128": "icons\/icon_128.png", "48": "icons\/icon_48.png", "16": "icons\/action_inactive.png" }, "action": { "default_icon": "icons\/action_inactive.png" }, "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+X", "mac": "Command+Shift+X", "chromeos": "Ctrl+Shift+X", "linux": "Ctrl+Shift+X" } } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": false, "js": [ "ctre_content.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "permissions": [ "commands", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "content.css" ], "matches": [ "*:\/\/*\/*" ] } ], "incognito": "spanning" } |