Did Youtube unsubscribe me?
Check if youtube unsubscribes you without asking.
O que é Did Youtube unsubscribe me??
Did Youtube unsubscribe me? é uma extensão do Chrome desenvolvida por T21 Computing, e sua principal característica é "Check if youtube unsubscribes you without asking.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Did Youtube unsubscribe me?
Baixe arquivos de extensão Did Youtube unsubscribe me? no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | lbodbdbdjefgplcajojgampojiiamjhe |
URL Oficial | https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe |
Descrição | Check if youtube unsubscribes you without asking. |
Tamanho do Arquivo | 16.88 KB |
Contagem de Instalações | 30 |
Versão Atual | 0.1.3 |
Última Atualização | 2020-11-14 |
Data de Publicação | 2020-11-14 |
Desenvolvedor | T21 Computing |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://f1.t21computing.co.uk/privacy |
Idiomas Suportados | 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" } } } |