behind!

Finds and opens all images under your cursor.

Wat is behind!?

behind! is een Chrome-extensie ontwikkeld door Devrim Şahin, en de belangrijkste functie is "Finds and opens all images under your cursor.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie behind!

Download behind!-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
Officiële URL https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
Beschrijving Finds and opens all images under your cursor.
Bestandsgrootte 48.65 KB
Aantal Installaties 1,833
Huidige Versie 0.2.20
Laatst Bijgewerkt 2022-04-16
Publicatiedatum 2020-04-07
Beoordeling 4.80/5 Totaal 5 Beoordelingen
Ontwikkelaar Devrim Şahin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kubuzetto/behind
Help Pagina-URL https://github.com/kubuzetto/behind/issues
Ondersteunde Talen 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"
    }
}