My Scroll Button

Simply scrolling to top or bottom

ما هو My Scroll Button؟

My Scroll Button هو إضافة Chrome تم تطويرها بواسطة N.Zetoutou، والميزة الرئيسية لها هي "Simply scrolling to top or bottom".

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

screenshot
screenshot

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

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

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

                        A simple scroll button.
Perfect for tumblr or twitter which use endless loading.
you can disable for specific site and your seetings is always synced with Chrome sync (you must check "extensions" in google chrome sync)
This extension has very light code (~ 6k without scroll image).
Enjoys !
************************ my other extensions ***************
https://chrome.google.com/webstore/detail/font-playground/hdpmpnhaoddjelneingmbnhaibbmjgno

https://chrome.google.com/webstore/detail/fast-bookmark-scanner/gjcmklpilmpfhfjpebhnapnglcppdbic

https://chrome.google.com/webstore/detail/click-counter-beta/pjjhodhefdnglbaaogjilbficnccehlf                    

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

الاسم My Scroll Button My Scroll Button
ID pbpnciineegkfenpaaebjmbmmbhocipf
عنوان URL الرسمي https://chromewebstore.google.com/detail/my-scroll-button/pbpnciineegkfenpaaebjmbmmbhocipf
الوصف Simply scrolling to top or bottom
حجم الملف 14.9 KB
عدد التثبيتات 285
النسخة الحالية 2017.11.15
آخر تحديث 2017-11-15
تاريخ النشر 2017-11-15
تقييم 4.14/5 مجموع تقييمات 14
المطور N.Zetoutou
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Scroll Button",
    "version": "2017.11.15",
    "description": "Simply scrolling to top or bottom",
    "icons": {
        "16": "icon-ext-48.png",
        "48": "icon-ext-48.png",
        "128": "icon-ext-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon-ext-48.png",
        "default_popup": "browser_action.html"
    },
    "web_accessible_resources": [
        "icon-up.png"
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "manifest_version": 2
}