Twitter Lazy Scroll

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

Wat is Twitter Lazy Scroll?

Twitter Lazy Scroll is een Chrome-extensie ontwikkeld door Shang Liang, en de belangrijkste functie is "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".

Extensie Screenshots

Download het CRX-bestand van de extensie Twitter Lazy Scroll

Download Twitter Lazy Scroll-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Twitter Lazy Scroll Twitter Lazy Scroll
ID fkbneanchjmfmnbkbkfejifnjpjgnpif
Officiële URL https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif
Beschrijving Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Bestandsgrootte 59.46 KB
Aantal Installaties 429
Huidige Versie 0.0.2
Laatst Bijgewerkt 2020-08-04
Publicatiedatum 2020-08-04
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Shang Liang
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}