image under cursor

open the image under the cursor in a new tab, even if the website doesn’t want you to

Vad är image under cursor?

image under cursor är en Chrome-tillägg utvecklad av https://becca.ooo, och dess huvudfunktion är "open the image under the cursor in a new tab, even if the website doesn’t want you to".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner image under cursor-förlängningens CRX-fil

Ladda ner image under cursor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        ever been annoyed that a website’s interactive photo viewer, magnifying glass, or other mystery features don’t let you save their images? “image under cursor” allows you to right click and attempt to open the image under the cursor in a new tab!

screenshots show but a small portion of the images you can save…                    

Grundläggande Information om Tillägg

Namn image under cursor image under cursor
ID jbghooeaijbjkficllpgejgpaglkjfok
Officiell webbadress https://chromewebstore.google.com/detail/image-under-cursor/jbghooeaijbjkficllpgejgpaglkjfok
Beskrivning open the image under the cursor in a new tab, even if the website doesn’t want you to
Filstorlek 8.59 KB
Antal Installationer 64
Aktuell Version 1.2.0
Senast Uppdaterad 2018-06-08
Publiceringsdatum 2018-06-07
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://becca.ooo
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "image under cursor",
    "short_name": "image under cursor",
    "version": "1.2.0",
    "minimum_chrome_version": "49",
    "manifest_version": 2,
    "description": "open the image under the cursor in a new tab, even if the website doesn\u2019t want you to",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "image-under-cursor.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    }
}