Delete Elements
Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!
什麼是Delete Elements?
Delete Elements是由Kira L開發的Chrome擴展程式,該擴展的主要功能是“Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!”。
擴展截圖
下載Delete Elements擴展crx文件
下載Delete Elements擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
My chrome extension allows you to delete any element that you don't want to see on a website using alt+click. After installing this extension, you can focus on the content of a website, instead of the navigation bars, side-bars, and unwanted images. Enjoy!
擴展基本資訊
名稱 | Delete Elements |
ID | egaeolhpclgmcegebneaibocfffkgode |
官方網址 | https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode |
簡介 | Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see! |
檔案大小 | 7.14 KB |
安裝次數 | 31 |
目前版本 | 1.0 |
更新時間 | 2020-09-11 |
上架時間 | 2020-09-11 |
開發者 | Kira L |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://kiraprograms.com |
說明頁面URL | http://kiraprograms.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Delete Elements", "version": "1.0", "description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!", "permissions": [], "page_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "add_to_website.js" ] } ], "manifest_version": 2 } |