Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
什麼是Twitch Follower Count?
Twitch Follower Count是由aranciro開發的Chrome擴展程式,該擴展的主要功能是“Configurable Chrome extension that shows follower count when in a twitch channel page.”。
擴展截圖
下載Twitch Follower Count擴展crx文件
下載Twitch Follower Count擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Puts the follower count next to the channel name on Twitch.
擴展基本資訊
名稱 | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
官方網址 | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
簡介 | Configurable Chrome extension that shows follower count when in a twitch channel page. |
檔案大小 | 81.73 KB |
安裝次數 | 41 |
目前版本 | 1.0.0 |
更新時間 | 2021-06-09 |
上架時間 | 2021-06-08 |
開發者 | aranciro |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
說明頁面URL | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Follower Count", "version": "1.0.0", "description": "Configurable Chrome extension that shows follower count when in a twitch channel page.", "icons": { "16": "res\/twitch-follower-count-icon-16x16.png", "32": "res\/twitch-follower-count-icon-32x32.png", "48": "res\/twitch-follower-count-icon-48x48.png", "64": "res\/twitch-follower-count-icon-64x64.png", "128": "res\/twitch-follower-count-icon-128x128.png" }, "options_page": "options\/index.html", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "twitch-follower-count.user.js" ], "css": [ "twitch-follower-count.css" ] } ], "manifest_version": 3 } |