In Zoom

Zoom in and out on images and videos using shift + mouse wheel and by other ways.

Τι είναι το In Zoom;

Το In Zoom είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kpion.github.io, και η κύρια λειτουργία του είναι "Zoom in and out on images and videos using shift + mouse wheel and by other ways.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης In Zoom

Λήψη αρχείων επέκτασης In Zoom σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension works "inline", i.e. images are not displayed in a popup - instead they are enlarged exactly where they are. 

Press shift (customizable) and use mouse wheel to zoom in or out an image or video under pointer.

It's open source: https://github.com/kpion/inzoom

If you have any suggestions, please don't hesitate to reach me on [email protected] or file an issue on the github page above.

New in version 1.31: Keyboard shortcut to enlarge a photo and bring it to the front in one step (alt + a).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα In Zoom In Zoom
ID oppcghdbglmbhhobfoodedhokbadlenh
Επίσημο URL https://chromewebstore.google.com/detail/in-zoom/oppcghdbglmbhhobfoodedhokbadlenh
Περιγραφή Zoom in and out on images and videos using shift + mouse wheel and by other ways.
Μέγεθος Αρχείου 453 KB
Αριθμός Εγκαταστάσεων 5,000
Τρέχουσα Έκδοση 1.32
Τελευταία Ενημέρωση 2019-05-17
Ημερομηνία Δημοσίευσης 2019-05-14
Αξιολόγηση 4.72/5 Συνολικά 29 Αξιολογήσεις
Προγραμματιστής https://kpion.github.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://kpion.github.io/inzoom/
Διεύθυνση URL της Σελίδας Βοήθειας https://kpion.github.io/inzoom/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "In Zoom",
    "version": "1.32",
    "description": "Zoom in and out on images and videos using shift + mouse wheel and by other ways.",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/kpion.github.io\/inzoom\/",
    "browser_action": {
        "default_popup": "browserAction\/index.html",
        "default_icon": {
            "16": "static\/images\/camera_lens_128.png",
            "32": "static\/images\/camera_lens_128.png",
            "48": "static\/images\/camera_lens_128.png",
            "128": "static\/images\/camera_lens_128.png"
        },
        "default_title": "In Zoom - zoom in \/ out on images and videos"
    },
    "background": {
        "page": "background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common\/app.js",
                "lib\/lightdom.js",
                "lib\/config.js",
                "lib\/hamster.js",
                "lib\/point.js",
                "inzoom\/inzoom.js"
            ],
            "css": [
                "inzoom\/style.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "static\/images\/camera_lens_128.png",
        "32": "static\/images\/camera_lens_128.png",
        "48": "static\/images\/camera_lens_128.png",
        "128": "static\/images\/camera_lens_128.png"
    },
    "manifest_version": 2
}