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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

PhotoShow 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "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 PhotoShow
ID mgpdnhlllbpncjpgokgfogidhoegebod
공식 URL 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__"
        }
    }
}