Youtube like to view ratio
Displays the percentage of likes to views, more popular videos have a higher ratio.
Cos'è Youtube like to view ratio?
Youtube like to view ratio è un'estensione di Chrome sviluppata da @amnrst, e la sua funzione principale è "Displays the percentage of likes to views, more popular videos have a higher ratio.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube like to view ratio
Scarica i file di estensione Youtube like to view ratio 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
Youtube recently removed the dislike to like ratio. A video with 1M views and 100 likes for example has a low ratio (0.1%), and probably means the video is not popular. Any video with a like to view ratio greater than 2 or 3 percent, should be all right. However the correct ratio depends on the type of content you are watching.
Informazioni di Base sull'Estensione
Nome | Youtube like to view ratio |
ID | pjkjdnlpbfcociacjalpklkpebephmha |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-like-to-view-rati/pjkjdnlpbfcociacjalpklkpebephmha |
Descrizione | Displays the percentage of likes to views, more popular videos have a higher ratio. |
Dimensione del File | 328 KB |
Conteggio Installazioni | 728 |
Versione Corrente | 0.0.1.0 |
Ultimo Aggiornamento | 2022-11-02 |
Data di Pubblicazione | 2021-12-04 |
Valutazione | 3.58/5 Totale 19 Valutazioni |
Sviluppatore | @amnrst |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/amnrst/youtube-like-to-view-ratio |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube like to view ratio", "description": "Displays the percentage of likes to views, more popular videos have a higher ratio.", "version": "0.0.1.0", "manifest_version": 2, "icons": { "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "homepage_url": "https:\/\/github.com\/amnrst\/youtube-like-to-view-ratio", "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ] } |