Remove Element

This extension will remove any element

什麼是Remove Element?

Remove Element是由mnetzer開發的Chrome擴展程式,該擴展的主要功能是“This extension will remove any element”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Remove Element擴展crx文件

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

擴展使用說明

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

擴展基本資訊

名稱 Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
官方網址 https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
簡介 This extension will remove any element
檔案大小 150 KB
安裝次數 81
目前版本 1.0
更新時間 2021-02-02
上架時間 2021-02-02
開發者 mnetzer
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/moishinetzer/remove-element
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}