Twitter Lazy Scroll

Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.

What is Twitter Lazy Scroll?

Twitter Lazy Scroll is a Chrome extension developed by Shang Liang, and its main feature is "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".

Extension Screenshots

Download Twitter Lazy Scroll Extension CRX File

Download Twitter Lazy Scroll extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.                    

Extension Basic Information

Name Twitter Lazy Scroll Twitter Lazy Scroll
ID fkbneanchjmfmnbkbkfejifnjpjgnpif
Official URL https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif
Description Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
File Size 59.46 KB
Installation Count 429
Current Version 0.0.2
Last Updated 2020-08-04
Publish Date 2020-08-04
Rating 3.67/5 Total 3 Ratings
Developer Shang Liang
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Lazy Scroll",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injection.js",
        "hud.css"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}