Return YouTube Dislike Count™
Show Youtube Dislike Count Again!
Return YouTube Dislike Count™คืออะไร?
Return YouTube Dislike Count™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย w3technic และคุณลักษณะหลักของมันคือ "Show Youtube Dislike Count Again!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Return YouTube Dislike Count™
ดาวน์โหลดไฟล์ส่วนขยาย Return YouTube Dislike Count™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Returns dislikes and ratio back to YouTube This extension returns dislikes and a ratio back to YouTube for those who have been censored by Google in their experiment - Added dislike count - Added ratio - Added detailed information [likes/dislikes]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | khilmfjhfhdigjjeajfofflkehemimkn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/return-youtube-dislike-co/khilmfjhfhdigjjeajfofflkehemimkn |
คำอธิบาย | Show Youtube Dislike Count Again! |
ขนาดไฟล์ | 20.63 KB |
จำนวนการติดตั้ง | 3,794 |
เวอร์ชันปัจจุบัน | 2.0.0.2 |
อัปเดตครั้งล่าสุด | 2021-12-15 |
วันที่เผยแพร่ | 2021-12-12 |
คะแนน | 3.28/5 รวมทั้งหมด 29 คะแนน |
ผู้พัฒนา | w3technic |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/ |
URL หน้าช่วยเหลือ | https://www.w3technic.com/free-chrome-extensions/return-youtube-dislike-count-chrome-extension/ |
URL หน้านโยบายความเป็นส่วนตัว | https://w3technic.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Return YouTube Dislike Count\u2122", "description": "Show Youtube Dislike Count Again!", "version": "2.0.0.2", "manifest_version": 3, "background": { "service_worker": "ryd.background.js" }, "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.music.youtube.com\/*" ], "js": [ "ryd.content-script.js", "ryd.tools.js", "\/init\/init.js" ], "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "ryd.script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |