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 |
公式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 |
Eメール | [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__" } } } |