behind!

Finds and opens all images under your cursor.

Τι είναι το behind!;

Το behind! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Devrim Şahin, και η κύρια λειτουργία του είναι "Finds and opens all images under your cursor.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης behind!

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
    }
}