Toggle YouTube Likes

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

Hvad er Toggle YouTube Likes?

Toggle YouTube Likes er en Chrome-udvidelse udviklet af Christopher Siegel, og dens hovedfunktion er "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Toggle YouTube Likes-udvidelses-CRX-fil

Download Toggle YouTube Likes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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)                    

Grundlæggende oplysninger om udvidelsen

Navn Toggle YouTube Likes Toggle YouTube Likes
ID gfmhigdbjknoapodiijfdfdkinmihfop
Officiel URL https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop
Beskrivelse Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Filstørrelse 49.33 KB
Antal Installationer 151
Nuværende Version 1.2
Senest Opdateret 2017-04-23
Udgivelsesdato 2017-04-23
Bedømmelse 3.73/5 Samlet 15 Bedømmelser
Udvikler Christopher Siegel
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}