How Do You Delete The Like Button [Youtube]

This extension allows the user to remove the like button from Youtube videos.

Was ist How Do You Delete The Like Button [Youtube]?

How Do You Delete The Like Button [Youtube] ist eine Chrome-Erweiterung, die von x.hiei.jaganshi.x entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user to remove the like button from Youtube videos.".

Erweiterungsscreenshots

screenshot

How Do You Delete The Like Button [Youtube]-Erweiterungs-CRX-Datei herunterladen

Laden Sie How Do You Delete The Like Button [Youtube]-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

                        How do you delete the like button? Now its possible. Click the extension icon to remove the like button from youtube videos, so you don't "accidentally" click on it. Automatically removes "Thumbs Up" from Logan Paul videos.                    

Grundlegende Informationen zur Erweiterung

Name How Do You Delete The Like Button [Youtube] How Do You Delete The Like Button [Youtube]
ID eolomlinhghnnjmbopefbpodbgpbggpb
Offizielle URL https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb
Beschreibung This extension allows the user to remove the like button from Youtube videos.
Dateigröße 7.02 KB
Installationsanzahl 18
Aktuelle Version 1.1
Letztes Update 2018-03-19
Veröffentlichungsdatum 2018-03-19
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler x.hiei.jaganshi.x
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "How Do You Delete The Like Button [Youtube]",
    "description": "This extension allows the user to remove the like button from Youtube videos.",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'"
}