Endless Page Scroller

This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.

什麼是Endless Page Scroller?

Endless Page Scroller是由https://namata.ru開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.”。

擴展截圖

screenshot

下載Endless Page Scroller擴展crx文件

下載Endless Page Scroller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible. Just click on the extension icon and the “Start” button to start scrolling and the “Stop” button to finish it.                    

擴展基本資訊

名稱 Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
官方網址 https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
簡介 This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
檔案大小 252 KB
安裝次數 9,000
目前版本 1.1
更新時間 2020-03-19
上架時間 2020-03-19
評分 2.50/5 共 8 次評分
開發者 https://namata.ru
電子郵箱 [email protected]
付費類型 free
擴展官網 http://namata.ru/extensions/endlesspagescroller
說明頁面URL http://namata.ru/support/thanksforinstall
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Endless Page Scroller",
    "description": "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        ""
    ]
}