Right-Click Borescope

List all images under your cursor, even ones hidden by other elements

Cos'è Right-Click Borescope?

Right-Click Borescope è un'estensione di Chrome sviluppata da blackle mori, e la sua funzione principale è "List all images under your cursor, even ones hidden by other elements".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Right-Click Borescope

Scarica i file di estensione Right-Click Borescope in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Dig into web pages, find buried treasure.

Right-Click Borescope allows you to view all images under your cursor, even if there's other images covering it, or if it's an image that has "right-click save" disabled.                    

Informazioni di Base sull'Estensione

Nome Right-Click Borescope Right-Click Borescope
ID mmdokamaalplkfiddbkhpfjmkhecbcnh
URL Ufficiale https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh
Descrizione List all images under your cursor, even ones hidden by other elements
Dimensione del File 70.58 KB
Conteggio Installazioni 537
Versione Corrente 0.0.4
Ultimo Aggiornamento 2022-05-10
Data di Pubblicazione 2022-03-29
Valutazione 5.00/5 Totale 12 Valutazioni
Sviluppatore blackle mori
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/blackle/Right-Click-Borescope
URL della Pagina di Aiuto https://github.com/blackle/Right-Click-Borescope/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Right-Click Borescope",
    "version": "0.0.4",
    "description": "List all images under your cursor, even ones hidden by other elements",
    "permissions": [
        "contextMenus"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 3
}