Did Youtube unsubscribe me?
Check if youtube unsubscribes you without asking.
¿Qué es Did Youtube unsubscribe me??
Did Youtube unsubscribe me? es una extensión de Chrome desarrollada por T21 Computing, y su función principal es "Check if youtube unsubscribes you without asking.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Did Youtube unsubscribe me?
Descarga archivos de extensión Did Youtube unsubscribe me? 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
You get notified if you get unsubscribed from a YouTube channel so your favorite creators content stays on your home page. This extension will open a new YouTube tab in the background every few hours to check you subscription list. You must be Signed In. --------------------------------------- Currently In beta, so please report any issues on the support form on the chrome web store.
Información Básica de la Extensión
Nombre | |
ID | lbodbdbdjefgplcajojgampojiiamjhe |
URL Oficial | https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe |
Descripción | Check if youtube unsubscribes you without asking. |
Tamaño del Archivo | 16.88 KB |
Cantidad de Instalaciones | 30 |
Versión Actual | 0.1.3 |
Última Actualización | 2020-11-14 |
Fecha de Publicación | 2020-11-14 |
Desarrollador | T21 Computing |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://f1.t21computing.co.uk/privacy |
Idiomas Soportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Did Youtube unsubscribe me?", "description": "Check if youtube unsubscribes you without asking.", "version": "0.1.3", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/?DYUM=1" ], "js": [ "js\/content.js" ], "css": [ "css\/main.css" ] } ], "icons": { "64": "images\/Unsub64.png", "128": "images\/Unsub128.png", "256": "images\/Unsub256.png" }, "web_accessible_resources": [ "manage\/*" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "64": "images\/Unsub64.png", "128": "images\/Unsub128.png", "256": "images\/Unsub256.png" } } } |