Auto Scroll

Automatically scroll down on your current web page

ما هو Auto Scroll؟

Auto Scroll هو إضافة Chrome تم تطويرها بواسطة PracticalApplications، والميزة الرئيسية لها هي "Automatically scroll down on your current web page".

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

screenshot
screenshot

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

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

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

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

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

الاسم Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
الوصف Automatically scroll down on your current web page
حجم الملف 44.83 KB
عدد التثبيتات 460
النسخة الحالية 1.0
آخر تحديث 2018-02-20
تاريخ النشر 2018-02-20
تقييم 3.75/5 مجموع تقييمات 4
المطور PracticalApplications
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}