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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}