Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

ما هو Autoscroll : Automatic Page Scrolling؟

Autoscroll : Automatic Page Scrolling هو إضافة Chrome تم تطويرها بواسطة Emil Vinod، والميزة الرئيسية لها هي "An extension to help scroll a webpage".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Autoscroll : Automatic Page Scrolling

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

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

                        This extension is perfect for those who are tired of manually scrolling through long articles, websites, or social media posts. No more tired fingers from scrolling or losing your place on a page. With Autoscroll, you can simply set the pace that you prefer and let the extension do the rest :)

For a guide to the extension visit : https://sites.google.com/view/autoscrollguide/home                    

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

الاسم Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
عنوان URL الرسمي https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
الوصف An extension to help scroll a webpage
حجم الملف 191 KB
عدد التثبيتات 46
النسخة الحالية 0.0.1
آخر تحديث 2024-01-23
تاريخ النشر 2023-11-23
تقييم 4.20/5 مجموع تقييمات 5
المطور Emil Vinod
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://sites.google.com/view/autoscrollguide/home
عنوان صفحة المساعدة https://sites.google.com/view/autoscrollguide/home
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoscroll : Automatic Page Scrolling",
    "version": "0.0.1",
    "description": "An extension to help scroll a webpage",
    "icons": {
        "16": "Logo.png",
        "32": "Logo.png",
        "48": "Logo.png",
        "128": "Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "js": "scroll.js"
    },
    "permissions": [
        "activeTab"
    ]
}