Show The Image

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

Show The Image là gì?

Show The Image là một tiện ích mở rộng Chrome được phát triển bởi jan.pesa, và tính năng chính của nó là "Press Ctrl/Cmd+Q to show the largest image in the page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Show The Image

Tải xuống các tệp mở rộng Show The Image dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Show The Image Show The Image
ID gfadjkidlmepfcieicmhmfgolejnnbol
URL Chính Thức https://chromewebstore.google.com/detail/show-the-image/gfadjkidlmepfcieicmhmfgolejnnbol
Mô tả Press Ctrl/Cmd+Q to show the largest image in the page
Kích Thước Tệp 9.48 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-10-24
Ngày Phát Hành 2020-01-19
Nhà Phát Triển jan.pesa
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/smajl/show-the-image
URL Trang Trợ Giúp https://github.com/smajl/show-the-image/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}