behind!

Finds and opens all images under your cursor.

Was ist behind!?

behind! ist eine Chrome-Erweiterung, die von Devrim Şahin entwickelt wurde, und ihr Hauptmerkmal ist "Finds and opens all images under your cursor.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

behind!-Erweiterungs-CRX-Datei herunterladen

Laden Sie behind!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
Offizielle URL https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
Beschreibung Finds and opens all images under your cursor.
Dateigröße 48.65 KB
Installationsanzahl 1,833
Aktuelle Version 0.2.20
Letztes Update 2022-04-16
Veröffentlichungsdatum 2020-04-07
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler Devrim Şahin
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kubuzetto/behind
Hilfeseite URL https://github.com/kubuzetto/behind/issues
Unterstützte Sprachen 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"
    }
}