Image Viewer
More than the default image viewer
什麼是Image Viewer?
Image Viewer是由a155268747開發的Chrome擴展程式,該擴展的主要功能是“More than the default image viewer”。
擴展截圖
下載Image Viewer擴展crx文件
下載Image Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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__" } } } |