How Do You Delete The Like Button [Youtube]

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

O que é How Do You Delete The Like Button [Youtube]?

How Do You Delete The Like Button [Youtube] é uma extensão do Chrome desenvolvida por x.hiei.jaganshi.x, e sua principal característica é "This extension allows the user to remove the like button from Youtube videos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão How Do You Delete The Like Button [Youtube]

Baixe arquivos de extensão How Do You Delete The Like Button [Youtube] no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome How Do You Delete The Like Button [Youtube] How Do You Delete The Like Button [Youtube]
ID eolomlinhghnnjmbopefbpodbgpbggpb
URL Oficial https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb
Descrição This extension allows the user to remove the like button from Youtube videos.
Tamanho do Arquivo 7.02 KB
Contagem de Instalações 18
Versão Atual 1.1
Última Atualização 2018-03-19
Data de Publicação 2018-03-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor x.hiei.jaganshi.x
Tipo de Pagamento free
Idiomas Suportados 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'"
}