View background image

Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.

View background imageとは何ですか?

View background imageはEspen Hovlandsdalによって開発されたChromeの拡張機能で、その主な機能は「Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.」です。

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

screenshot

View background image拡張機能のCRXファイルをダウンロード

View background image拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds a new menu item to web pages - "open background image in new tab". Will try to find the closest element to the clicked area that has a background image.

Tries to mirror Chrome's own "open image in new tab"-functionality, but currently there seems to be no way in Chrome extensions to show a context menu item based on the return value of a function, so currently it is always shown, regardless of the presence of a background image.

This extension is open-source and MIT-licensed. Source code can be found at https://github.com/rexxars/view-background-image - contributions are welcome.                    

拡張機能の基本情報

名前 View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
公式URL https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
説明 Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
ファイルサイズ 7.62 KB
インストール数 1,849
現在のバージョン 1.0.3
最終更新日 2016-08-07
公開日 2016-08-07
評価 2.85/5 合計 41 レビュー
開発者 Espen Hovlandsdal
支払い方法 free
拡張機能のウェブサイト https://github.com/rexxars/view-background-image
ヘルプページのURL https://github.com/rexxars/view-background-image/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "View background image",
    "version": "1.0.3",
    "description": "Adds a \"open background image in new tab\" menu item. Finds closest element to the clicked area that has a background image.",
    "permissions": [
        "contextMenus",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    }
}