Image Viewer
More than the default image viewer
Image Viewer क्या है?
Image Viewer a155268747 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "More than the default image viewer"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Image Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Image Viewer is a Chrome extension for improve your images viewing experiences. Features 1. Collect and view all images on the page. 2. Support video poster and images in iframes. 3. Auto load most lazy loaded images. 4. Redirect middle click to original image 5. Go to original image on the page. 6. Fit, zoom, rotate and mirror the image. 7. Hotkey for image reverse search. 8. Download collected images. 9. Easy to use. 10. And more... The UI is intuitive, you can use mouse or keyboard to control it. Full manual is available in the repository of this project. https://github.com/hospotho/Image-Viewer You can buy me a coffee on https://ko-fi.com/tonymilktea
एक्सटेंशन की मूल जानकारी
नाम | Image Viewer |
ID | ghdcoodfcolpdebbdhbgkbodbjololfl |
आधिकारिक URL | https://chromewebstore.google.com/detail/image-viewer/ghdcoodfcolpdebbdhbgkbodbjololfl |
विवरण | More than the default image viewer |
फ़ाइल का आकार | 95.23 KB |
स्थापना संख्या | 743 |
वर्तमान संस्करण | 1.33 |
अंतिम अपडेट | 2024-01-17 |
प्रकाशन तिथि | 2022-10-31 |
रेटिंग | 3.50/5 कुल 2 रेटिंग्स |
डेवलपर | a155268747 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hospotho/Image-Viewer |
समर्थित भाषाएँ | en,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.33", "default_locale": "en", "manifest_version": 3, "icons": { "16": "\/icon\/icon16.png", "128": "\/icon\/icon128.png" }, "permissions": [ "storage", "contextMenus", "scripting", "webNavigation" ], "host_permissions": [ "*:\/\/*\/*", "file:\/\/\/*" ], "background": { "service_worker": "background.js" }, "options_page": "options.html", "action": { "default_icon": { "16": "\/icon\/icon16.png", "128": "\/icon\/icon128.png" } }, "content_scripts": [ { "js": [ "\/scripts\/activate-url.js" ], "matches": [ "*:\/\/*\/*", "file:\/\/\/*" ] } ], "commands": { "open-image-viewer": { "suggested_key": { "default": "Alt+1" }, "description": "__MSG_view_images_in_image_viewer__" }, "open-image-viewer-without-size-filter": { "suggested_key": { "default": "Alt+Shift+1" }, "description": "__MSG_view_all_images_in_image_viewer__" } } } |