PhotoShow
View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.
什麼是PhotoShow?
PhotoShow是由Vincent W.開發的Chrome擴展程式,該擴展的主要功能是“View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you.”。
擴展截圖
下載PhotoShow擴展crx文件
下載PhotoShow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
"PhotoShow" is a tool for browsing high-definition images by hovering mouse on image thumbnails, supporting over 140 websites/domains of your daily use (still in extending), such as Amazon, Facebook, Google, Wiki, YouTube, etc. ● HOTKEYS Esc : Close image viewer Shift + Ctrl + ← : Rotate counterclockwise Shift + Ctrl + → : Rotate clockwise ↑ / → / ↓ / ← : Scroll up / right / down / left PgUp / PgDn : Scroll up / down by image visible height Home / End : Scroll up to the top / down to the bottom M / L / A / P : Switch view mode V: Toggle to the previously used view mode Tab : Open high-definition image in new tab S : Save high-definition image C : Copy high-definition image address ● SETTINGS WEBSITE TOGGLE: You may turn on/off PhotoShow on any supported website respectively. ACTIVATION MODE: Use Shift/Ctrl/Alt key as a modifier key to trigger high-definition image preview when mouse hovering on image thumbnails. VIEW MODE: Switch between different size of the viewer. IMAGE SIZE DISPLAY: Set whether to display HD image size information in the viewer. SHADOW DISPLAY: Set whether to display shadow between the viewer and the source thumbnail. For more settings, please refer to the PhotoShow popup window. All the settings will be saved and synced automatically by the browser among all your devices (as long as the account sync in your browser is enabled and the extension data sync is granted). ● IMAGE LOADING SPEED PhotoShow will try to fetch as large an original image as it knows, so it may be considerably slow if your network condition is poor. ● PRIVACY & TERMS of USE The author and all contributors of PhotoShow DO NOT collect any of your personal data and is not responsible for any loss, personal information leak, disputes and/or any consequences caused by illegal download, use of resources (including but not limited to images) of any websites you visit. In no event shall we be liable for any claims, penalties, loss, damage or expenses, howsoever arising, out of or in connection with your use of PhotoShow. Installing and using PhotoShow is deemed as your acceptance of the above terms. PhotoShow only works in the local browser environment, all the permissions it asks when being installed are only for image preview and download. For version 3.0 and later, the 'Read and change all your data on the websites you visit' permission is asked so that you will no longer be disturbed by permission alert when PhotoShow updates to support more websites. We reserve the right to change this Privacy Policy at any time without notifying you respectively. Any amended Privacy Policy will be posted on relevant websites. This Privacy Policy was last updated on January 24th, 2020 and replaces any other versions previously applicable from this date. ● FEEDBACK Should you have any feedback or need more websites to be fitted, please do not hesitate to contact the author via emails or Github. If you enjoy using PhotoShow, it would be appreciated if you could introduce it to your friends via the social media listed on the popup window. Thank you.
擴展基本資訊
名稱 | PhotoShow |
ID | mgpdnhlllbpncjpgokgfogidhoegebod |
官方網址 | https://chromewebstore.google.com/detail/photoshow/mgpdnhlllbpncjpgokgfogidhoegebod |
簡介 | View high-definition images by hovering mouse over thumbnails, for all your favorite websites and you. |
檔案大小 | 114 KB |
安裝次數 | 70,000 |
目前版本 | 4.30.0 |
更新時間 | 2023-11-10 |
上架時間 | 2020-05-24 |
評分 | 4.51/5 共 220 次評分 |
開發者 | Vincent W. |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Mr-VincentW/PhotoShow |
說明頁面URL | https://github.com/Mr-VincentW/PhotoShow/issues |
支援的語言 | en,en-GB,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDesc__", "version": "4.30.0", "version_name": "4.30.0", "author": "Vincent W.", "default_locale": "en", "minimum_chrome_version": "69", "icons": { "16": "resources\/icon16.png", "24": "resources\/icon24.png", "32": "resources\/icon32.png", "36": "resources\/icon36.png", "48": "resources\/icon48.png", "64": "resources\/icon64.png", "128": "resources\/icon128.png" }, "background": { "scripts": [ "jquery-3.6.0.min.js", "background.js" ] }, "devtools_page": "devtools\/devtools.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "downloads", "contextMenus", "storage", "webRequest", "webRequestBlocking" ], "browser_action": { "default_icon": { "16": "resources\/icon16.png", "32": "resources\/icon32.png" }, "default_title": "__MSG_extensionName__", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "content\/content.css" ], "js": [ "jquery-3.6.0.min.js", "content\/content.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "frameContent\/frameContent.css" ], "js": [ "jquery-3.6.0.min.js", "frameContent\/frameContent.js" ], "all_frames": true } ], "web_accessible_resources": [ "resources\/photoShowIcons.woff2", "resources\/photoShowIcons.woff" ], "commands": { "togglePhotoShow": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "__MSG_extensionKeyboardShortcutDesc_toggle__" } } } |