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
官方網址 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"
    }
}