Toggle YouTube Likes

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

Apa itu Toggle YouTube Likes?

Toggle YouTube Likes adalah ekstensi Chrome yang dikembangkan oleh Christopher Siegel, dan fitur utamanya adalah "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Toggle YouTube Likes

Unduh file ekstensi Toggle YouTube Likes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Toggle YouTube Likes Toggle YouTube Likes
ID gfmhigdbjknoapodiijfdfdkinmihfop
URL Resmi https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop
Deskripsi Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Ukuran File 49.33 KB
Jumlah Instalasi 151
Versi Saat Ini 1.2
Terakhir Diperbarui 2017-04-23
Tanggal Publikasi 2017-04-23
Penilaian 3.73/5 Total 15 Penilaian
Pengembang Christopher Siegel
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}