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 |
官方URL | 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 } |