Remove Element
Creates a contextual menu item to remove an element from the DOM
什麼是Remove Element?
Remove Element是由https://weilstreet.com開發的Chrome擴展程式,該擴展的主要功能是“Creates a contextual menu item to remove an element from the DOM”。
擴展截圖
下載Remove Element擴展crx文件
下載Remove Element擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary. After installation you must reload any open pages for the extension to work.
擴展基本資訊
名稱 | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
官方網址 | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
簡介 | Creates a contextual menu item to remove an element from the DOM |
檔案大小 | 6.35 KB |
安裝次數 | 2,523 |
目前版本 | 1.0.2 |
更新時間 | 2018-09-05 |
上架時間 | 2018-09-04 |
評分 | 3.94/5 共 32 次評分 |
開發者 | https://weilstreet.com |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove Element", "version": "1.0.2", "description": "Creates a contextual menu item to remove an element from the DOM", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove.js" ] } ] } |