Remove HTML Elements

Easily remove desired HTML5 elements with just one click!

什麼是Remove HTML Elements?

Remove HTML Elements是由Sevina開發的Chrome擴展程式,該擴展的主要功能是“Easily remove desired HTML5 elements with just one click!”。

擴展截圖

screenshot

下載Remove HTML Elements擴展crx文件

下載Remove HTML Elements擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Remove HTML Elements add-on let you easily remove desired elements in any HTML5 webpage.

Simply click on the toolbar button to activate the add-on. Please note that this add-on requires "user action" to be activated. Once it is active, please hover on any element within the page with your mouse. When the mouse pointer is over any HTML5 element, it will highlighted with red color. Now, when you click on the highlighted element, it will be removed from the page.

Please note that, this add-on does not delete the elements from the page, instead, it changes the display property to "none". The add-on supports undo operation via (Ctrl + Z) keyboard combination.

If you found a bug to report, or have a feature request in mind, please fill out the bug report form in the add-on's homepage (https://mybrowseraddon.com/remove-html-elements.html).                    

擴展基本資訊

名稱 Remove HTML Elements Remove HTML Elements
ID enegojdnkeicfoiknhfjaedhlckeahmf
官方網址 https://chromewebstore.google.com/detail/remove-html-elements/enegojdnkeicfoiknhfjaedhlckeahmf
簡介 Easily remove desired HTML5 elements with just one click!
檔案大小 33.31 KB
安裝次數 2,176
目前版本 0.1.3
更新時間 2023-02-28
上架時間 2018-11-26
評分 3.73/5 共 15 次評分
開發者 Sevina
電子郵箱 [email protected]
付費類型 free
擴展官網 https://mybrowseraddon.com/remove-html-elements.html
說明頁面URL https://mybrowseraddon.com/remove-html-elements.html
隱私政策頁面URL https://mybrowseraddon.com/privacy-policy/developer/sevina.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.3",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Remove HTML Elements",
    "homepage_url": "https:\/\/mybrowseraddon.com\/remove-html-elements.html",
    "description": "Easily remove desired HTML5 elements with just one click!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/icons\/remove.png"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Remove HTML Elements",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}