Right-Click Borescope
List all images under your cursor, even ones hidden by other elements
Co je Right-Click Borescope?
Right-Click Borescope je rozšíření Chrome vyvinuté blackle mori, a jeho hlavní funkcí je „List all images under your cursor, even ones hidden by other elements“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Right-Click Borescope
Stáhněte si soubory rozšíření Right-Click Borescope ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
                        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.                     Základní Informace o Rozšíření
| Název |  | 
| ID | mmdokamaalplkfiddbkhpfjmkhecbcnh | 
| Oficiální URL | https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh | 
| Popis | List all images under your cursor, even ones hidden by other elements | 
| Velikost souboru | 70.58 KB | 
| Počet instalací | 537 | 
| Aktuální Verze | 0.0.4 | 
| Poslední Aktualizace | 2022-05-10 | 
| Datum Vydání | 2022-03-29 | 
| Hodnocení | 5.00/5 Celkem 12 Hodnocení | 
| Vývojář | blackle mori | 
| [email protected] | |
| Typ Platby | free | 
| Webové stránky Rozšíření | https://github.com/blackle/Right-Click-Borescope | 
| URL Stránky Nápovědy | https://github.com/blackle/Right-Click-Borescope/issues | 
| Podporované Jazyky | 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
} | |