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
官方網址 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"
        }
    ]
}