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
公式URL 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
Eメール [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"
        }
    ]
}