Auto Scroll

Automatically scroll down on your current web page

Auto Scrollとは何ですか?

Auto ScrollはPracticalApplicationsによって開発されたChromeの拡張機能で、その主な機能は「Automatically scroll down on your current web page」です。

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

screenshot
screenshot

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

Auto Scroll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

拡張機能の基本情報

名前 Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
公式URL https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
説明 Automatically scroll down on your current web page
ファイルサイズ 44.83 KB
インストール数 460
現在のバージョン 1.0
最終更新日 2018-02-20
公開日 2018-02-20
評価 3.75/5 合計 4 レビュー
開発者 PracticalApplications
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}