Hide Youtube Likes/Dislikes
Hides ratings information on Youtube videos.
Hide Youtube Likes/Dislikesคืออะไร?
Hide Youtube Likes/Dislikes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rmitaldev และคุณลักษณะหลักของมันคือ "Hides ratings information on Youtube videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Youtube Likes/Dislikes
ดาวน์โหลดไฟล์ส่วนขยาย Hide Youtube Likes/Dislikes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
UPDATE 1.0.2: Now handles Youtube's new sentiment bar, where dislikes are already hidden automatically. This extension gives users the option to hide the number of "likes" on a video and/or the entire sentiment bar on Youtube. Feel free to continue rating videos without worrying what other people think of it, or turn off that feature completely if you want to watch and enjoy videos without any pressure! NOTE: You will need to restart your browser for the changes to take effect! If you have any other trouble with this extension, please leave a comment in the support page and I will get to you as soon as I can. Thanks!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hide Youtube Likes/Dislikes |
ID | bndphnggikgjkhappgdnhijgnlafnfph |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph |
คำอธิบาย | Hides ratings information on Youtube videos. |
ขนาดไฟล์ | 73.07 KB |
จำนวนการติดตั้ง | 641 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2023-05-09 |
วันที่เผยแพร่ | 2020-02-24 |
คะแนน | 4.38/5 รวมทั้งหมด 32 คะแนน |
ผู้พัฒนา | rmitaldev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Youtube Likes\/Dislikes", "version": "1.0.2", "description": "Hides ratings information on Youtube videos.", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "arrive.js", "contentscript.js" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } }, "icons": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } } |