Images Under Cursor
Finds all images and background images laying under the cursor
Images Under Cursor क्या है?
Images Under Cursor Alexandre Macabies द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Finds all images and background images laying under the cursor"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Images Under Cursor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |