Remove Element
Remove an HTML element from the context menu (right-click).
什麼是Remove Element?
Remove Element是由atheimanksu開發的Chrome擴展程式,該擴展的主要功能是“Remove an HTML element from the context menu (right-click).”。
擴展截圖
下載Remove Element擴展crx文件
下載Remove Element擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu. Extremely simple and efficient code is available at https://github.com/atheiman/remove-element
擴展基本資訊
名稱 | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
官方網址 | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
簡介 | Remove an HTML element from the context menu (right-click). |
檔案大小 | 178 KB |
安裝次數 | 363 |
目前版本 | 1.0 |
更新時間 | 2015-09-03 |
上架時間 | 2015-09-02 |
評分 | 2.00/5 共 8 次評分 |
開發者 | atheimanksu |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Element", "description": "Remove an HTML element from the context menu (right-click).", "version": "1.0", "author": "Austin Heiman", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/red-x-16.png", "48": "images\/red-x-48.png", "128": "images\/red-x-128.png" }, "background": { "scripts": [ "event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |