Did Youtube unsubscribe me?

Check if youtube unsubscribes you without asking.

Was ist Did Youtube unsubscribe me??

Did Youtube unsubscribe me? ist eine Chrome-Erweiterung, die von T21 Computing entwickelt wurde, und ihr Hauptmerkmal ist "Check if youtube unsubscribes you without asking.".

Erweiterungsscreenshots

screenshot

Did Youtube unsubscribe me?-Erweiterungs-CRX-Datei herunterladen

Laden Sie Did Youtube unsubscribe me?-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Did Youtube unsubscribe me? Did Youtube unsubscribe me?
ID lbodbdbdjefgplcajojgampojiiamjhe
Offizielle URL https://chrome.google.com/webstore/detail/did-youtube-unsubscribe-m/lbodbdbdjefgplcajojgampojiiamjhe
Beschreibung Check if youtube unsubscribes you without asking.
Dateigröße 16.88 KB
Installationsanzahl 30
Aktuelle Version 0.1.3
Letztes Update 2020-11-14
Veröffentlichungsdatum 2020-11-14
Entwickler T21 Computing
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://f1.t21computing.co.uk/privacy
Unterstützte Sprachen 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"
        }
    }
}