Disable Scrolling

This extension allows you to disable scrolling on your page.

ما هو Disable Scrolling؟

Disable Scrolling هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension allows you to disable scrolling on your page.".

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

screenshot

تحميل ملف CRX للإضافة Disable Scrolling

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

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

                        Ever tried searching for a word in the current viewport, but the Find Bar takes you to "random" sections of the page, making you lose track of the section you were just reading?

Try using this chrome extension to temporarily disable scrolling of the current page before you use Find, so that you can stay where you are while Find searches all the instances for you.

* Note: please refresh any pre-existing tabs after installation.                    

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

الاسم Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
عنوان URL الرسمي https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
الوصف This extension allows you to disable scrolling on your page.
حجم الملف 190 KB
عدد التثبيتات 1,077
النسخة الحالية 1.0.0
آخر تحديث 2020-06-13
تاريخ النشر 2020-06-13
تقييم 3.20/5 مجموع تقييمات 10
المطور Unknown
نوع الدفع free
موقع الإضافة https://github.com/ysun62/Disable-Scrolling-Extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Scrolling",
    "description": "This extension allows you to disable scrolling on your page.",
    "version": "1.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}