Return YouTube Subscribers
Fixes YouTube's Subscriber Counts On Channel/Video Pages.
Cos'è Return YouTube Subscribers?
Return YouTube Subscribers è un'estensione di Chrome sviluppata da straightfrommgyt, e la sua funzione principale è "Fixes YouTube's Subscriber Counts On Channel/Video Pages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Return YouTube Subscribers
Scarica i file di estensione Return YouTube Subscribers in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
In September of 2019, YouTube abbreviated all subscriber counts across their website and api. This extension uses yabcounts.com and nextcounts.com to get an estimated subscriber count of YouTube channels. It displays then where the abbreviated counts would be.
Informazioni di Base sull'Estensione
Nome | Return YouTube Subscribers |
ID | ojecnnfmjkfobkhghilomnfihgonkjdm |
URL Ufficiale | https://chromewebstore.google.com/detail/return-youtube-subscriber/ojecnnfmjkfobkhghilomnfihgonkjdm |
Descrizione | Fixes YouTube's Subscriber Counts On Channel/Video Pages. |
Dimensione del File | 9.28 KB |
Conteggio Installazioni | 816 |
Versione Corrente | 3.1 |
Ultimo Aggiornamento | 2024-02-16 |
Data di Pubblicazione | 2022-04-19 |
Valutazione | 4.07/5 Totale 27 Valutazioni |
Sviluppatore | straightfrommgyt |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://ryts.mgcounts.com |
URL della Pagina di Aiuto | https://ryts.mgcounts.com |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Return YouTube Subscribers", "description": "Fixes YouTube's Subscriber Counts On Channel\/Video Pages.", "manifest_version": 3, "version": "3.1", "icons": { "16": "icon.png", "32": "icon.png", "128": "icon.png" }, "content_scripts": [ { "js": [ "main.js" ], "matches": [ "https:\/\/*.youtube.com\/c\/*", "https:\/\/*.youtube.com\/channel\/*", "https:\/\/*.youtube.com\/user\/*", "https:\/\/*.youtube.com\/watch?v=*", "https:\/\/*.youtube.com\/@*", "https:\/\/*.youtube.com\/*" ] } ], "host_permissions": [ "https:\/\/api.mgcounts.com\/*" ] } |