Right-Click Borescope

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

Vad är Right-Click Borescope?

Right-Click Borescope är en Chrome-tillägg utvecklad av blackle mori, och dess huvudfunktion är "List all images under your cursor, even ones hidden by other elements".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Right-Click Borescope-förlängningens CRX-fil

Ladda ner Right-Click Borescope-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Right-Click Borescope Right-Click Borescope
ID mmdokamaalplkfiddbkhpfjmkhecbcnh
Officiell webbadress https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh
Beskrivning List all images under your cursor, even ones hidden by other elements
Filstorlek 70.58 KB
Antal Installationer 537
Aktuell Version 0.0.4
Senast Uppdaterad 2022-05-10
Publiceringsdatum 2022-03-29
Betyg 5.00/5 Totalt 12 Betyg
Utvecklare blackle mori
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/blackle/Right-Click-Borescope
Hjälpsida URL https://github.com/blackle/Right-Click-Borescope/issues
Stödda Språk 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
}