Show The Image

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

Τι είναι το Show The Image;

Το Show The Image είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jan.pesa, και η κύρια λειτουργία του είναι "Press Ctrl/Cmd+Q to show the largest image in the page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Show The Image

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    ]
}