Scroll Zoom

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

ما هو Scroll Zoom؟

Scroll Zoom هو إضافة Chrome تم تطويرها بواسطة https://armin.dev، والميزة الرئيسية لها هي "Zoom web pages with the left or right mouse button and the scroll wheel.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Scroll Zoom

قم بتنزيل ملفات الامتداد Scroll Zoom بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Scroll Zoom Scroll Zoom
ID ccfomhdaagemnbhbpminjoggkbglmcgb
عنوان URL الرسمي https://chromewebstore.google.com/detail/scroll-zoom/ccfomhdaagemnbhbpminjoggkbglmcgb
الوصف Zoom web pages with the left or right mouse button and the scroll wheel.
حجم الملف 538 KB
عدد التثبيتات 1,927
النسخة الحالية 2.0.2
آخر تحديث 2023-09-14
تاريخ النشر 2020-02-02
تقييم 4.09/5 مجموع تقييمات 22
المطور https://armin.dev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dessant/scroll-zoom#readme
عنوان صفحة المساعدة https://github.com/dessant/scroll-zoom/issues
اللغات المدعومة 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"
}