YouTrends
Google Chrome extension for YouTube video discovery
Cos'è YouTrends?
YouTrends è un'estensione di Chrome sviluppata da Jeremy and Audrey, e la sua funzione principale è "Google Chrome extension for YouTube video discovery".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTrends
Scarica i file di estensione YouTrends 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
Bored? Want to check up on what's trending this week on YouTube without searching through the site? YouTrends is a simple extension that leads you to a random trending video from YouTube with an easy click of the button. You can also specify the category or subject you want. You will be led to a random currently popular video in that category. Just a simple extension to pass time and enjoy YouTube a different way! *Made in under 24 hours in the 2016 Yale University Hackathon*
Informazioni di Base sull'Estensione
Nome | |
ID | fjophlgnmggbpbjmjclcdcgaoifnfnog |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtrends/fjophlgnmggbpbjmjclcdcgaoifnfnog |
Descrizione | Google Chrome extension for YouTube video discovery |
Dimensione del File | 201 KB |
Conteggio Installazioni | 16 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2016-11-20 |
Data di Pubblicazione | 2016-11-20 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | Jeremy and Audrey |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTrends", "version": "1.0.3", "description": "Google Chrome extension for YouTube video discovery", "browser_action": { "default_popup": "src\/popup.html", "default_title": "YouTrends" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/*.yahooapis.com\/*", "https:\/\/*.yahooapis.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/jquery-3.1.1.js", "src\/popup.js" ] } ] } |