Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Τι είναι το Twitch Follower Count;
Το Twitch Follower Count είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον aranciro, και η κύρια λειτουργία του είναι "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitch Follower Count
Λήψη αρχείων επέκτασης Twitch Follower Count σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Puts the follower count next to the channel name on Twitch. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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
} | |