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文件
下載Click to Remove Element擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } |