Show The Image

Press Ctrl/Cmd+Q to show the largest image in the page

Show The Image란 무엇입니까?

Show The Image은(는) jan.pesa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Press Ctrl/Cmd+Q to show the largest image in the page"입니다.

확장 프로그램 스크린샷

screenshot

Show The Image 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        I often bump into image galleries where clicking on thumbnails will take you to a new page with the original photo. The usual problem with these "detail pages" is that they contain a lot of other elements and noise like adverts, other thumbnails, unrelated content and image is often shrinked and cropped so you don't see the original right away.

This extension solves that by providing you with a simple keyboard shortcut CTRL+Q (Windows) or Cmd+Q (MacOS) that finds the largest image in the current page (eventually searches for a link leading to even larger original image) and displays it without any disturbing elements. Pressing the shortcut again will take you back.

If this gets somewhat popular, I may add configurable shortcut and more - leave your ideas. Enjoy.                    

확장 프로그램 기본 정보

이름 Show The Image Show The Image
ID gfadjkidlmepfcieicmhmfgolejnnbol
공식 URL https://chromewebstore.google.com/detail/show-the-image/gfadjkidlmepfcieicmhmfgolejnnbol
설명 Press Ctrl/Cmd+Q to show the largest image in the page
파일 크기 9.48 KB
설치 횟수 47
현재 버전 1.0.0
최근 업데이트 2020-10-24
출시 날짜 2020-01-19
개발자 jan.pesa
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/smajl/show-the-image
도움말 페이지 URL https://github.com/smajl/show-the-image/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show The Image",
    "description": "Press Ctrl\/Cmd+Q to show the largest image in the page",
    "version": "1.0.0",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "show-the-image": {
            "suggested_key": {
                "default": "Ctrl+Q"
            },
            "description": "Key for showing the largest image and going back to original page"
        }
    },
    "permissions": [
        "activeTab"
    ]
}