Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Twitch Follower Count क्या है?
Twitch Follower Count aranciro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Configurable Chrome extension that shows follower count when in a twitch channel page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Follower Count एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |