SelfScroll

This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

ما هو SelfScroll؟

SelfScroll هو إضافة Chrome تم تطويرها بواسطة https://zerobug.it، والميزة الرئيسية لها هي "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.".

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

تحميل ملف CRX للإضافة SelfScroll

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

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

                        This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Buy me a coffe :D

Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug                    

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

الاسم SelfScroll SelfScroll
ID lofkbkbhpmeihoaogggfbhmjdekjihlf
عنوان URL الرسمي https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf
الوصف This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
حجم الملف 132 KB
عدد التثبيتات 1,476
النسخة الحالية 1.4
آخر تحديث 2018-11-13
تاريخ النشر 2018-11-13
تقييم 4.40/5 مجموع تقييمات 5
المطور https://zerobug.it
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://zerobug.it/
اللغات المدعومة en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SelfScroll",
    "version": "1.4",
    "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
    "default_locale": "en",
    "icons": {
        "16": ".\/icons\/selfscroll_16.png",
        "48": ".\/icons\/selfscroll_48.png",
        "128": ".\/icons\/selfscroll_128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "selfscroll_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "selfscroll_options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "selfscroll_background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": ".\/icons\/selfscroll.png",
        "default_title": "SelfScroll"
    },
    "manifest_version": 2
}