Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

ما هو Middle Click Scroll؟

Middle Click Scroll هو إضافة Chrome تم تطويرها بواسطة alarv، والميزة الرئيسية لها هي "Clicking the middle click/wheel now takes you to the top of the page".

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

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

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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

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

الاسم Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
الوصف Clicking the middle click/wheel now takes you to the top of the page
حجم الملف 15.16 KB
عدد التثبيتات 195
النسخة الحالية 1.0
آخر تحديث 2016-06-07
تاريخ النشر 2016-06-07
تقييم 2.29/5 مجموع تقييمات 7
المطور alarv
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}