Auto Scroll Extension

Auto Scroller for Chrome to help user scroll automatically

Auto Scroll Extensionคืออะไร?

Auto Scroll Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://071yoon.github.io และคุณลักษณะหลักของมันคือ "Auto Scroller for Chrome to help user scroll automatically"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Scroll Extension

ดาวน์โหลดไฟล์ส่วนขยาย Auto Scroll Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Auto Scroller for Chrome for automation
This Extension helps user to use scroller as automation form.
for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! 
And in addition, extension remembers your last option for scrolling, and will remain as that option.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto Scroll Extension Auto Scroll Extension
ID ppkbgpllhklbjlmmncjjgogcdphkaaho
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho
คำอธิบาย Auto Scroller for Chrome to help user scroll automatically
ขนาดไฟล์ 84.15 KB
จำนวนการติดตั้ง 383
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2023-09-05
วันที่เผยแพร่ 2023-09-04
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://071yoon.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll Extension",
    "description": "Auto Scroller for Chrome to help user scroll automatically",
    "manifest_version": 3,
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}