Toggle YouTube Likes

Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!

O que é Toggle YouTube Likes?

Toggle YouTube Likes é uma extensão do Chrome desenvolvida por Christopher Siegel, e sua principal característica é "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Toggle YouTube Likes

Baixe arquivos de extensão Toggle YouTube Likes 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

                        Special thanks to YouTuber 2Bough!

Changelog:

Version 1.2:
- Now also hides the like/dislike bar above the like/dislike buttons.
(31. March 2017)

Version 1.1:
- fixes issues with youtubes way of changing urls
(30. March 2017)                    

Informações Básicas da Extensão

Nome Toggle YouTube Likes Toggle YouTube Likes
ID gfmhigdbjknoapodiijfdfdkinmihfop
URL Oficial https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop
Descrição Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Tamanho do Arquivo 49.33 KB
Contagem de Instalações 151
Versão Atual 1.2
Última Atualização 2017-04-23
Data de Publicação 2017-04-23
Classificação 3.73/5 Total de 15 Avaliações
Desenvolvedor Christopher Siegel
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Toggle YouTube Likes",
    "description": "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!",
    "version": "1.2",
    "author": "Christopher Siegel",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "jquery.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "hide.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ]
}