Zoom Page WE

Zoom web pages (either per-site or per-tab) using full-page zoom, text-only zoom, automatic fit-to-width and minimum font size.

Τι είναι το Zoom Page WE;

Το Zoom Page WE είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DW-dev, και η κύρια λειτουργία του είναι "Zoom web pages (either per-site or per-tab) using full-page zoom, text-only zoom, automatic fit-to-width and minimum font size.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        CHANGES

Version 33.5

• Improvements to popup panel.
• Minor bug fixes.

OVERVIEW

Zoom Page WE provides facilities to make the contents of a web page larger or smaller (either per-site or per-tab) using full-page or text-only zoom and minimum font size. AutoFit (fit-to-width) can be applied manually or automatically. Small images can be scaled to fit the browser window. 

TOOLBAR BUTTON

After installation, there will be a new blue 'floppy-disk' icon on the main toolbar with a blue badge showing the current zoom level.

To change the zoom level for a page, click on the toolbar button to show the popup panel, then click on one of the six buttons on the right side of the popup panel:

• Type - toggles the type between Full and Text.
• Level (%) - shows a drop-down menu from which a specific level can be selected.
• In (+) - increases the level to the next defined level or by a fixed step.
• Out (-) - reduces the level to the next defined level or by a fixed step.
• Autofit - adjusts the level so the page contents fit the width of the browser window.
• Reset - applies the defined default full/text level depending on the current type.

To change the minimum font size for a page, click on the toolbar button to show the popup panel, then click on one of the two buttons on the left side of the popup panel:

• Minimum Size (px) - shows a drop-down from which a specific minimum font size can be selected.
• Reset - applies the defined default minimum font size.

SUPPORT

Please e-mail:  [email protected]

LICENSE

Distributed under the GNU General Public License version 2.
See LICENCE.txt file and http://www.gnu.org/licenses/                    

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

Όνομα Zoom Page WE Zoom Page WE
ID bcdjhkphgmiapajkphennjfgoehpodpk
Επίσημο URL https://chromewebstore.google.com/detail/zoom-page-we/bcdjhkphgmiapajkphennjfgoehpodpk
Περιγραφή Zoom web pages (either per-site or per-tab) using full-page zoom, text-only zoom, automatic fit-to-width and minimum font size.
Μέγεθος Αρχείου 97.78 KB
Αριθμός Εγκαταστάσεων 12,231
Τρέχουσα Έκδοση 33.5
Τελευταία Ενημέρωση 2023-04-29
Ημερομηνία Δημοσίευσης 2020-06-21
Αξιολόγηση 4.16/5 Συνολικά 145 Αξιολογήσεις
Προγραμματιστής DW-dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Zoom Page WE",
    "version": "33.5",
    "description": "Zoom web pages (either per-site or per-tab) using full-page zoom, text-only zoom, automatic fit-to-width and minimum font size.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128-96.png"
    },
    "minimum_chrome_version": "88",
    "permissions": [
        "tabs",
        "webNavigation",
        "contextMenus",
        "notifications",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png"
        },
        "default_title": "Zoom Page WE",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": {
            "description": "Show Zoom Popup",
            "suggested_key": {
                "default": "Alt+Z"
            }
        }
    }
}