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
电子邮箱 [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
}