behind!

Finds and opens all images under your cursor.

什麼是behind!?

behind!是由Devrim Şahin開發的Chrome擴展程式,該擴展的主要功能是“Finds and opens all images under your cursor.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載behind!擴展crx文件

下載behind!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        When "view background image" is greyed out, this add-on is there to help you.

behind! can reveal:

- Background images,
- Images under layers of nonsense (e.g. clickable surfaces designed to hide the image from you),
- Embedded images / base64-encoded image chunks,
- Alternative resolutions ,
- Vector images (even when they are inlined),
- Images in shadow DOM

Source code: https://github.com/kubuzetto/behind                    

擴展基本資訊

名稱 behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
官方網址 https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
簡介 Finds and opens all images under your cursor.
檔案大小 48.65 KB
安裝次數 1,833
目前版本 0.2.20
更新時間 2022-04-16
上架時間 2020-04-07
評分 4.80/5 共 5 次評分
開發者 Devrim Şahin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kubuzetto/behind
說明頁面URL https://github.com/kubuzetto/behind/issues
支援的語言 en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "0.2.20",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "",
        "tabs",
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "256": "icon256.png"
    }
}