Toggle YouTube Likes

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

Toggle YouTube Likesคืออะไร?

Toggle YouTube Likes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Christopher Siegel และคุณลักษณะหลักของมันคือ "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Toggle YouTube Likes

ดาวน์โหลดไฟล์ส่วนขยาย Toggle YouTube Likes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Toggle YouTube Likes Toggle YouTube Likes
ID gfmhigdbjknoapodiijfdfdkinmihfop
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop
คำอธิบาย Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
ขนาดไฟล์ 49.33 KB
จำนวนการติดตั้ง 151
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-04-23
วันที่เผยแพร่ 2017-04-23
คะแนน 3.73/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา Christopher Siegel
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}