Webpage Auto Scrolldown

Automatically keeps you at the bottom of a page when clicked.

Webpage Auto Scrolldownとは何ですか?

Webpage Auto ScrolldownはCommanderCactusによって開発されたChromeの拡張機能で、その主な機能は「Automatically keeps you at the bottom of a page when clicked.」です。

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

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

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

拡張機能の使用方法

                        Literally scrolls to the bottom of the page. That's it.

Click it once to activate it, click it again to deactivate.

Probably a lot of bugs.

Go forth and be productive, I guess.                    

拡張機能の基本情報

名前 Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
公式URL https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
説明 Automatically keeps you at the bottom of a page when clicked.
ファイルサイズ 14.53 KB
インストール数 3,000
現在のバージョン 1.0
最終更新日 2016-03-13
公開日 2016-03-13
評価 4.15/5 合計 20 レビュー
開発者 CommanderCactus
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webpage Auto Scrolldown",
    "description": "Automatically keeps you at the bottom of a page when clicked.",
    "version": "1.0",
    "short_name": "Auto Scroller",
    "icons": {
        "16": "ico16.png",
        "48": "ico48.png",
        "128": "ico128.png"
    },
    "background": {
        "scripts": [
            "bgcomm.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "alarms"
    ],
    "browser_action": {
        "default_title": "KICK IT INTO OVERDRIIIIIIVE"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "autoscroll.js"
            ],
            "run_at": "document_end"
        }
    ]
}