Images Under Cursor

Finds all images and background images laying under the cursor

什么是Images Under Cursor?

Images Under Cursor是由Alexandre Macabies开发的Chrome扩展程序,该扩展的主要功能是“Finds all images and background images laying under the cursor”。

扩展截图

screenshot
screenshot

下载Images Under Cursor扩展crx文件

下载Images Under Cursor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Find and extract all images, pictures, GIFs, background images and videos laying under the cursor, whatever their depth or nesting in the DOM tree. This extension also supports extracting the current frame of canvas elements.

This is useful to bypass the HTML, Javascript or CSS tricks some websites use to prevent the user from accessing the page assets — which is plain ridiculous, as there are accessible anyway.

Usage: right-click on any image or video, then select “Images under cursor”: a list of found images will appear, that you can open or save. You can also use the Ctrl+Shift+F keyboard shortcut. The shortcut can be customized in Chrome settings.

This extension is open-source software licensed under MIT. Visit website link for source.                    

扩展基本信息

名称 Images Under Cursor Images Under Cursor
ID kjfcpinmimcpiabejchhneahpajgklcj
官方URL https://chromewebstore.google.com/detail/images-under-cursor/kjfcpinmimcpiabejchhneahpajgklcj
简介 Finds all images and background images laying under the cursor
文件大小 20.34 KB
安装次数 738
当前版本 0.5
更新时间 2020-10-23
上架时间 2018-03-23
评分 4.28/5 共18次评分
开发者 Alexandre Macabies
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/zopieux/chrome-images-under-cursor
帮助页面URL https://github.com/zopieux/chrome-images-under-cursor
支持的语言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "short_name": "IUC",
    "description": "__MSG_app_desc__",
    "version": "0.5",
    "author": "Alexandre Macabies",
    "homepage_url": "https:\/\/github.com\/zopieux\/chrome-images-under-cursor",
    "incognito": "spanning",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "16": "img\/menu-icon.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/main.js"
        ],
        "persistent": false
    },
    "commands": {
        "invoke": {
            "description": "__MSG_invoke_cmd_desc__",
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "global": false
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/icon-48.png",
        "img\/icon-nope-26.png"
    ]
}