Did Youtube unsubscribe me?

Check if youtube unsubscribes you without asking.

Cos'è Did Youtube unsubscribe me??

Did Youtube unsubscribe me? è un'estensione di Chrome sviluppata da T21 Computing, e la sua funzione principale è "Check if youtube unsubscribes you without asking.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Did Youtube unsubscribe me?

Scarica i file di estensione Did Youtube unsubscribe me? 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Did Youtube unsubscribe me? Did Youtube unsubscribe me?
ID lbodbdbdjefgplcajojgampojiiamjhe
URL Ufficiale https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe
Descrizione Check if youtube unsubscribes you without asking.
Dimensione del File 16.88 KB
Conteggio Installazioni 30
Versione Corrente 0.1.3
Ultimo Aggiornamento 2020-11-14
Data di Pubblicazione 2020-11-14
Sviluppatore T21 Computing
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://f1.t21computing.co.uk/privacy
Lingue Supportate 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"
        }
    }
}