Twitter Lazy Scroll
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
Was ist Twitter Lazy Scroll?
Twitter Lazy Scroll ist eine Chrome-Erweiterung, die von Shang Liang entwickelt wurde, und ihr Hauptmerkmal ist "Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.".
Erweiterungsscreenshots
Twitter Lazy Scroll-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter Lazy Scroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.
Grundlegende Informationen zur Erweiterung
Name | Twitter Lazy Scroll |
ID | fkbneanchjmfmnbkbkfejifnjpjgnpif |
Offizielle URL | https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif |
Beschreibung | Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar. |
Dateigröße | 59.46 KB |
Installationsanzahl | 429 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2020-08-04 |
Veröffentlichungsdatum | 2020-08-04 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | Shang Liang |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |