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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}