Right-Click Borescope

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

Co to jest Right-Click Borescope?

Right-Click Borescope to rozszerzenie Chrome opracowane przez blackle mori, a jego główną funkcją jest „List all images under your cursor, even ones hidden by other elements”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Right-Click Borescope

Pobierz pliki rozszerzeń Right-Click Borescope w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Right-Click Borescope Right-Click Borescope
ID mmdokamaalplkfiddbkhpfjmkhecbcnh
Oficjalny URL https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh
Opis List all images under your cursor, even ones hidden by other elements
Rozmiar pliku 70.58 KB
Liczba instalacji 537
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2022-05-10
Data Publikacji 2022-03-29
Ocena 5.00/5 Łącznie 12 Oceny
Deweloper blackle mori
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/blackle/Right-Click-Borescope
Adres URL Strony Pomocy https://github.com/blackle/Right-Click-Borescope/issues
Obsługiwane Języki 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
}