behind!

Finds and opens all images under your cursor.

Qu'est-ce que behind! ?

behind! est une extension Chrome développée par Devrim Şahin, et sa fonction principale est "Finds and opens all images under your cursor.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension behind!

Téléchargez les fichiers d'extension behind! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
URL Officiel https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
Description Finds and opens all images under your cursor.
Taille du Fichier 48.65 KB
Nombre d'Installations 1,833
Version Actuelle 0.2.20
Dernière Mise à Jour 2022-04-16
Date de Publication 2020-04-07
Évaluation 4.80/5 Total 5 Évaluations
Développeur Devrim Şahin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kubuzetto/behind
URL de la Page d'Aide https://github.com/kubuzetto/behind/issues
Langues Prises en Charge 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"
    }
}