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

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

screenshot
screenshot

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