How Do You Delete The Like Button [Youtube]

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

Qu'est-ce que How Do You Delete The Like Button [Youtube] ?

How Do You Delete The Like Button [Youtube] est une extension Chrome développée par x.hiei.jaganshi.x, et sa fonction principale est "This extension allows the user to remove the like button from Youtube videos.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension How Do You Delete The Like Button [Youtube]

Téléchargez les fichiers d'extension How Do You Delete The Like Button [Youtube] 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

                        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.                    

Informations de Base sur l'Extension

Nom How Do You Delete The Like Button [Youtube] How Do You Delete The Like Button [Youtube]
ID eolomlinhghnnjmbopefbpodbgpbggpb
URL Officiel https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb
Description This extension allows the user to remove the like button from Youtube videos.
Taille du Fichier 7.02 KB
Nombre d'Installations 18
Version Actuelle 1.1
Dernière Mise à Jour 2018-03-19
Date de Publication 2018-03-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur x.hiei.jaganshi.x
Type de Paiement free
Langues Prises en Charge 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'"
}