EveryTube
Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.
¿Qué es EveryTube?
EveryTube es una extensión de Chrome desarrollada por www.odwyer.software, y su función principal es "Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión EveryTube
Descarga archivos de extensión EveryTube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension allows you to keep up to date with creators who don't have a YouTube account right from your YouTube subscriptions page. Everything in one place 👍 How to use: 1. Visit the other video sites (Bitchute or Odysee) and login to them using your web browser as normal. 2. Visit your YouTube Subscriptions page (https://www.youtube.com/feed/subscriptions) 3. You should now see content from all video sites listed on that page. Common Issues: 1. If for some reason you don't see the content on the YouTube page, but you are logged in to the other video sites, wait 5 minutes and try again (EveryTube takes that long to update sometimes). FAQs: Q: Does EveryTube access my login username or password in any way? A: No.
Información Básica de la Extensión
Nombre | EveryTube |
ID | emegoeklfbjgngcomlbmdjcmbaeilhhd |
URL Oficial | https://chromewebstore.google.com/detail/everytube/emegoeklfbjgngcomlbmdjcmbaeilhhd |
Descripción | Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com. |
Tamaño del Archivo | 1.06 MB |
Cantidad de Instalaciones | 183 |
Versión Actual | 0.2.6 |
Última Actualización | 2022-09-12 |
Fecha de Publicación | 2020-09-09 |
Calificación | 4.00/5 Total de 8 Calificaciones |
Desarrollador | www.odwyer.software |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/project-49476/EveryTube |
URL de la Página de Ayuda | https://github.com/project-49476/EveryTube |
URL de la Página de Política de Privacidad | https://github.com/project-49476/EveryTube/wiki/Privacy-Policy |
Idiomas Soportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EveryTube", "description": "Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.", "version": "0.2.6", "icons": { "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "style.css" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [ "cookies", "unlimitedStorage", "history", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.odysee.com\/*", "https:\/\/odysee.com\/*", "https:\/\/www.bitchute.com\/", "https:\/\/lbry.tv\/", "https:\/\/lbry.tv\/$\/following", "https:\/\/api.lbry.tv\/*", "https:\/\/api.lbry.com\/*" ], "manifest_version": 3 } |