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"
        }
    ]
}