Scroller

Scrolls the page for you!

Scrollerとは何ですか?

ScrollerはA developerによって開発されたChromeの拡張機能で、その主な機能は「Scrolls the page for you!」です。

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

screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Scroller - Your Personalized Auto Scroll Chrome Extension

Are you a manga enthusiast, a news junkie, or a blog reader who finds it tedious to manually scroll through lengthy pages? Say hello to Scroller, a Google Chrome extension designed to enhance your reading experience by automating the scrolling process.

Getting Started:
1. Install the Scroller extension and pin it to your browser.
2. Click on the Scroller icon (next to the address bar) to access and save your preferred scrolling configuration.
3. To activate Scroller, right-click on the webpage, select "Scroller" from the dropdown menu, and choose either "Start Scroll" or "Stop Scroll."
4. If enabled, a double-click anywhere on the webpage will initiate the auto-scroll feature.
5. A single click on the webpage will temporarily pause the auto-scroll. To resume, simply scroll manually. To permanently stop, use the right-click menu.
Features:

Scroller offers two modes for a tailored scrolling experience:

1. Simple Mode: Adjust the scroll speed to your liking, choosing from slow, medium, or fast. The speed is customizable, with 1 being the fastest and higher values slowing the scroll speed.

2. Advanced Mode: This mode provides additional options:
- Scroll Percent: Define the percentage of the visible screen to scroll in each interval.
- Interval: Set the time gap (in seconds) between each scroll.
- Auto-Scroll On Page Load: Decide whether the webpage should automatically scroll upon loading.
- Scroll Till: Specify an element on the page where scrolling should stop. Use the element picker button next to the input field to select the element on the current webpage. The element you're selecting will be highlighted in light blue. (Refer to the 3rd and 4th screenshots for more details).

Both modes allow you to enable or disable the "double click to scroll" feature per domain and support the "auto scroll to top" feature. If enabled, Scroller will automatically scroll the page to the top once the scrolling is completed.


Note:
Remember to save your configuration before using the "Scroll Till" option. 
The configuration is stored per domain (e.g., www.example.com), not per individual webpage.                    

拡張機能の基本情報

名前 Scroller Scroller
ID hidphoggmejjfibikofhkcolcfpkjkmm
公式URL https://chromewebstore.google.com/detail/scroller/hidphoggmejjfibikofhkcolcfpkjkmm
説明 Scrolls the page for you!
ファイルサイズ 2.91 MB
インストール数 2,044
現在のバージョン 1.1.6
最終更新日 2023-10-05
公開日 2021-04-15
評価 3.83/5 合計 18 レビュー
開発者 A developer
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroller",
    "description": "Scrolls the page for you!",
    "version": "1.1.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Scroller",
        "default_icon": {
            "16": ".\/images\/logo_16.png",
            "32": ".\/images\/logo_32.png",
            "48": ".\/images\/logo_48.png",
            "128": ".\/images\/logo_128.png"
        }
    },
    "icons": {
        "16": ".\/images\/logo_16.png",
        "32": ".\/images\/logo_32.png",
        "48": ".\/images\/logo_48.png",
        "128": ".\/images\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/libs\/css-selector-generator.js",
                "constants.js",
                ".\/utils\/common-utils.js",
                ".\/utils\/storage-utils.js",
                "content.js"
            ]
        }
    ],
    "incognito": "split"
}