AutoScrolling

Auto-scrolling without mouse-wheel

AutoScrollingคืออะไร?

AutoScrolling เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pinkienort และคุณลักษณะหลักของมันคือ "Auto-scrolling without mouse-wheel"

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

screenshot
screenshot
screenshot

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

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

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

                        This plugin enables you auto-scrolling without using mouse wheel. When you click the icon on the toolbar, the auto-scrolling is started. If you want to stop, then click the icon again. And the scrolling is also stopped when you switch the active tab in the active window.

The plugin helps you for such situation, that you are doing some task or games with watching the web sites like Twitter or Tumblr.

If you find some bugs or request some features, please sends me mails or create issues in the homepage of this plugin.

Thank you for users.                    

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

ชื่อ AutoScrolling AutoScrolling
ID maibgninmecbokncboknddpeaedfioea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autoscrolling/maibgninmecbokncboknddpeaedfioea
คำอธิบาย Auto-scrolling without mouse-wheel
ขนาดไฟล์ 233 KB
จำนวนการติดตั้ง 1,046
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2019-03-26
วันที่เผยแพร่ 2019-03-25
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา pinkienort
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pinkienort/AutoScrolling
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoScrolling",
    "version": "1.0.0",
    "author": "pinkienort",
    "homepage_url": "https:\/\/github.com\/pinkienort\/AutoScrolling",
    "description": "Auto-scrolling without mouse-wheel",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "options_ui": {
        "page": "dist\/options.html"
    },
    "icons": {
        "48": "icons\/mouse-48.png",
        "96": "icons\/mouse-96.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/mouse-16.png",
            "32": "icons\/mouse-32.png",
            "48": "icons\/mouse-48.png"
        },
        "default_title": "Enable\/Disable auto scroll"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "commands": {
        "single-click-action": {
            "suggested_key": {
                "default": "Alt+Shift+PageDown"
            },
            "description": "Fire a single click on browser icon"
        }
    }
}