Streamities - Realtime Sub Count for YouTube
Show your current realtime subscriber count live in the YouTube Creator Studio.
Τι είναι το Streamities - Realtime Sub Count for YouTube;
Το Streamities - Realtime Sub Count for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://streamities.com, και η κύρια λειτουργία του είναι "Show your current realtime subscriber count live in the YouTube Creator Studio.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Streamities - Realtime Sub Count for YouTube
Λήψη αρχείων επέκτασης Streamities - Realtime Sub Count for YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Show your current realtime subscriber count live in the YouTube Creator Studio. Adds a button in the Creator Studio to activate your realtime subscriber count. Description: - First, head to studio.youtube.com (The YouTube Creator Studio Dashboard) - Second, login to your YouTube account if needed - Last but not least, click on the button "Sub Count" in the studio sidemenu to activate your sub count If you want to change background color or font of the sub count, please go to option by right clicking on the extension icon. Visit our website here: https://streamities.com
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | amgkcconhgodlphkhnoppnmepbgeeige |
Επίσημο URL | https://chromewebstore.google.com/detail/streamities-realtime-sub/amgkcconhgodlphkhnoppnmepbgeeige |
Περιγραφή | Show your current realtime subscriber count live in the YouTube Creator Studio. |
Μέγεθος Αρχείου | 121 KB |
Αριθμός Εγκαταστάσεων | 908 |
Τρέχουσα Έκδοση | 1.7 |
Τελευταία Ενημέρωση | 2020-05-10 |
Ημερομηνία Δημοσίευσης | 2020-05-09 |
Αξιολόγηση | 3.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | https://streamities.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://streamities.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://streamities.com/faq |
URL της Σελίδας Πολιτικής Απορρήτου | https://streamities.com/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Streamities - Realtime Sub Count for YouTube", "short_name": "Streamities", "version": "1.7", "description": "Show your current realtime subscriber count live in the YouTube Creator Studio.", "permissions": [ "activeTab", "declarativeContent", "storage", "webRequest", "https:\/\/studio.youtube.com\/channel\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/studio.youtube.com\/channel\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "iframe.html", "images\/icons\/trending.png" ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icons\/16.png", "32": "images\/icons\/32.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" } }, "icons": { "16": "images\/icons\/16.png", "32": "images\/icons\/32.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" }, "manifest_version": 2 } |