Youtube Dislike Count Extention
This extention enables the YouTube dislike count!
Youtube Dislike Count Extentionคืออะไร?
Youtube Dislike Count Extention เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ausama95 และคุณลักษณะหลักของมันคือ "This extention enables the YouTube dislike count!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Dislike Count Extention
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Dislike Count Extention ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension brings back the ability to be able to see the dislike ratio of any YouTube video.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ihelhpoojojegneekjecpiobfkbfcibi |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi |
คำอธิบาย | This extention enables the YouTube dislike count! |
ขนาดไฟล์ | 24.13 KB |
จำนวนการติดตั้ง | 105 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2022-01-25 |
วันที่เผยแพร่ | 2022-01-24 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Ausama95 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Dislike Count Extention", "description": "This extention enables the YouTube dislike count!", "version": "0.2", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "options_page": "options.html", "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" } }, "icons": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |