Youtube Relist
Lists youtube videos that are unlisted.
Cos'è Youtube Relist?
Youtube Relist è un'estensione di Chrome sviluppata da http://fwra.me, e la sua funzione principale è "Lists youtube videos that are unlisted.".
Scarica il file CRX dell'estensione Youtube Relist
Scarica i file di estensione Youtube Relist 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
This extension is needed to help add unlisted videos to the database. Head to http://yr.fwra.me/ to search for unlisted videos.
Informazioni di Base sull'Estensione
Nome | |
ID | cjmpedjkkpihnongpkgkmjiemmpjhndi |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-relist/cjmpedjkkpihnongpkgkmjiemmpjhndi |
Descrizione | Lists youtube videos that are unlisted. |
Dimensione del File | 39.02 KB |
Conteggio Installazioni | 368 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-10-25 |
Data di Pubblicazione | 2017-10-25 |
Valutazione | 2.33/5 Totale 6 Valutazioni |
Sviluppatore | http://fwra.me |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://yr.fwra.me/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Relist", "description": "Lists youtube videos that are unlisted.", "version": "1.0", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Youtube Relist" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?*" ], "js": [ "jquery-3.2.1.min.js", "videoScript.js" ] }, { "matches": [ "http:\/\/yr.fwra.me\/" ], "js": [ "checker.js" ], "run_at": "document_end" } ] } |