Did Youtube unsubscribe me?
Check if youtube unsubscribes you without asking.
Qu'est-ce que Did Youtube unsubscribe me? ?
Did Youtube unsubscribe me? est une extension Chrome développée par T21 Computing, et sa fonction principale est "Check if youtube unsubscribes you without asking.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Did Youtube unsubscribe me?
Téléchargez les fichiers d'extension Did Youtube unsubscribe me? au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | lbodbdbdjefgplcajojgampojiiamjhe |
URL Officiel | https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe |
Description | Check if youtube unsubscribes you without asking. |
Taille du Fichier | 16.88 KB |
Nombre d'Installations | 30 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2020-11-14 |
Date de Publication | 2020-11-14 |
Développeur | T21 Computing |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://f1.t21computing.co.uk/privacy |
Langues Prises en Charge | 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" } } } |