Auto Scroll Extension

Auto Scroller for Chrome to help user scroll automatically

Auto Scroll Extensionとは何ですか?

Auto Scroll Extensionはhttps://071yoon.github.ioによって開発されたChromeの拡張機能で、その主な機能は「Auto Scroller for Chrome to help user scroll automatically」です。

拡張機能のスクリーンショット

screenshot

Auto Scroll Extension拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}