Twitter Lazy Scroll
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.
什麼是Twitter Lazy Scroll?
Twitter Lazy Scroll是由Shang Liang開發的Chrome擴展程式,該擴展的主要功能是“Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar.”。
擴展截圖
下載Twitter Lazy Scroll擴展crx文件
下載Twitter Lazy Scroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the sidebar.
擴展基本資訊
名稱 | Twitter Lazy Scroll |
ID | fkbneanchjmfmnbkbkfejifnjpjgnpif |
官方網址 | https://chromewebstore.google.com/detail/twitter-lazy-scroll/fkbneanchjmfmnbkbkfejifnjpjgnpif |
簡介 | Automatically scrolls Twitter for you. Press spacebar to start and stop scrolling. You can adjust the speed on the side bar. |
檔案大小 | 59.46 KB |
安裝次數 | 429 |
目前版本 | 0.0.2 |
更新時間 | 2020-08-04 |
上架時間 | 2020-08-04 |
評分 | 3.67/5 共 3 次評分 |
開發者 | Shang Liang |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } } |