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」です。

拡張機能のスクリーンショット

screenshot

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 Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
公式URL 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"
            ]
        }
    ]
}