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文件

下載Show The Image擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}