Scroll Zoom

Zoom web pages with the left or right mouse button and the scroll wheel.

Co to jest Scroll Zoom?

Scroll Zoom to rozszerzenie Chrome opracowane przez https://armin.dev, a jego główną funkcją jest „Zoom web pages with the left or right mouse button and the scroll wheel.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Scroll Zoom

Pobierz pliki rozszerzeń Scroll Zoom w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Scroll Zoom is a browser extension which lets you zoom web pages by holding the left or right (default) mouse button and moving the scroll wheel. The mouse gestures can be configured from the extension's options, and the customization of zoom levels is also supported.

The continued development of Scroll Zoom is made possible thanks to the support of awesome backers. If you'd like to join them, please check out https://armin.dev/go/patreon

Due to browser restrictions the extension does not work on the Chrome Web Store website or local browser and extension pages, such as chrome://extensions.

Relevant browser bugs:
  • On macOS and Linux the right mouse button gesture does not zoom pages as expected, the context menu is shown

The extension is also available for Edge and Firefox: https://github.com/dessant/scroll-zoom#readme

Reviews are not monitored for bug reports, please use GitHub for issues and feature requests.

https://github.com/dessant/scroll-zoom                    

Podstawowe informacje o rozszerzeniu

Nazwa Scroll Zoom Scroll Zoom
ID ccfomhdaagemnbhbpminjoggkbglmcgb
Oficjalny URL https://chromewebstore.google.com/detail/scroll-zoom/ccfomhdaagemnbhbpminjoggkbglmcgb
Opis Zoom web pages with the left or right mouse button and the scroll wheel.
Rozmiar pliku 538 KB
Liczba instalacji 1,927
Aktualna Wersja 2.0.2
Ostatnia Aktualizacja 2023-09-14
Data Publikacji 2020-02-02
Ocena 4.09/5 Łącznie 22 Oceny
Deweloper https://armin.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dessant/scroll-zoom#readme
Adres URL Strony Pomocy https://github.com/dessant/scroll-zoom/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.0.2",
    "author": "Armin Sebastian",
    "homepage_url": "https:\/\/github.com\/dessant\/scroll-zoom",
    "default_locale": "en",
    "minimum_chrome_version": "92.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src *; object-src 'none';",
    "icons": {
        "16": "src\/assets\/icons\/app\/icon-16.png",
        "19": "src\/assets\/icons\/app\/icon-19.png",
        "24": "src\/assets\/icons\/app\/icon-24.png",
        "32": "src\/assets\/icons\/app\/icon-32.png",
        "38": "src\/assets\/icons\/app\/icon-38.png",
        "48": "src\/assets\/icons\/app\/icon-48.png",
        "64": "src\/assets\/icons\/app\/icon-64.png",
        "96": "src\/assets\/icons\/app\/icon-96.png",
        "128": "src\/assets\/icons\/app\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "src\/assets\/icons\/app\/icon-16.png",
            "19": "src\/assets\/icons\/app\/icon-19.png",
            "24": "src\/assets\/icons\/app\/icon-24.png",
            "32": "src\/assets\/icons\/app\/icon-32.png",
            "38": "src\/assets\/icons\/app\/icon-38.png",
            "48": "src\/assets\/icons\/app\/icon-48.png",
            "64": "src\/assets\/icons\/app\/icon-64.png",
            "96": "src\/assets\/icons\/app\/icon-96.png",
            "128": "src\/assets\/icons\/app\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "background": {
        "page": "src\/background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "src\/insert\/script.js"
            ]
        }
    ],
    "incognito": "split"
}