Snap Scroll

Delightfully fast and precise scrolling via point and click.

什麼是Snap Scroll?

Snap Scroll是由Steven Meliopoulos開發的Chrome擴展程式,該擴展的主要功能是“Delightfully fast and precise scrolling via point and click.”。

擴展截圖

screenshot
screenshot

下載Snap Scroll擴展crx文件

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

擴展使用說明

                        Snap Scroll helps you read better!

Ever wonder why reading in books is more comfortable than on screens? It's because the text in books doesn't move! 
When you scroll the text you're reading, you're giving your eyes a hard time.
Snap Scroll brings the book experience to the screen by replacing that continuous movement with quick and predictable hops.

How does it work?

Keep your hands off that scroll wheel! When you finish reading a paragraph, just click directly below it using the middle mouse button (or the left and right button at the same time) to instantly bring the next paragraph to the top - like a virtual page turn! Because there is no interruption you'll be less distracted.

Give it a try and see your focus improve!                    

擴展基本資訊

名稱 Snap Scroll Snap Scroll
ID kdegcljjpimkobjeejpfogokeedlbbje
官方網址 https://chromewebstore.google.com/detail/snap-scroll/kdegcljjpimkobjeejpfogokeedlbbje
簡介 Delightfully fast and precise scrolling via point and click.
檔案大小 58.03 KB
安裝次數 273
目前版本 2.1.0
更新時間 2019-04-29
上架時間 2019-04-28
評分 5.00/5 共 6 次評分
開發者 Steven Meliopoulos
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Snap Scroll",
    "short_name": "Snap Scroll",
    "description": "Delightfully fast and precise scrolling via point and click.",
    "version": "2.1.0",
    "author": "Steven Meliopoulos",
    "icons": {
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Snap Scroll",
        "default_icon": {
            "16": "img\/action_icon_enabled_16.png",
            "24": "img\/action_icon_enabled_24.png",
            "32": "img\/action_icon_enabled_32.png"
        },
        "default_popup": "popup_main.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "shared.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "shared.js",
            "background.js"
        ]
    }
}