Right-Click Borescope

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

Right-Click Borescopeとは何ですか?

Right-Click Borescopeはblackle moriによって開発されたChromeの拡張機能で、その主な機能は「List all images under your cursor, even ones hidden by other elements」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Right-Click Borescope拡張機能のCRXファイルをダウンロード

Right-Click Borescope拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Right-Click Borescope Right-Click Borescope
ID mmdokamaalplkfiddbkhpfjmkhecbcnh
公式URL https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh
説明 List all images under your cursor, even ones hidden by other elements
ファイルサイズ 70.58 KB
インストール数 537
現在のバージョン 0.0.4
最終更新日 2022-05-10
公開日 2022-03-29
評価 5.00/5 合計 12 レビュー
開発者 blackle mori
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/blackle/Right-Click-Borescope
ヘルプページのURL https://github.com/blackle/Right-Click-Borescope/issues
対応言語 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
}