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”。
擴展截圖
下載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.                     擴展基本資訊
| 名稱 |  | 
| ID | mmdokamaalplkfiddbkhpfjmkhecbcnh | 
| 官方網址 | 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 | 
| 電子郵箱 | [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
} | |