Right-Click Borescope

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

Apa itu Right-Click Borescope?

Right-Click Borescope adalah ekstensi Chrome yang dikembangkan oleh blackle mori, dan fitur utamanya adalah "List all images under your cursor, even ones hidden by other elements".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Right-Click Borescope

Unduh file ekstensi Right-Click Borescope dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Right-Click Borescope Right-Click Borescope
ID mmdokamaalplkfiddbkhpfjmkhecbcnh
URL Resmi https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh
Deskripsi List all images under your cursor, even ones hidden by other elements
Ukuran File 70.58 KB
Jumlah Instalasi 537
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2022-05-10
Tanggal Publikasi 2022-03-29
Penilaian 5.00/5 Total 12 Penilaian
Pengembang blackle mori
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/blackle/Right-Click-Borescope
URL Halaman Bantuan https://github.com/blackle/Right-Click-Borescope/issues
Bahasa yang Didukung 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
}