Video Tag Viewer for YouTube
Chrome Extension for Viewing Video Tags on YouTube.
Video Tag Viewer for YouTubeคืออะไร?
Video Tag Viewer for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fiahfy.blogspot.com และคุณลักษณะหลักของมันคือ "Chrome Extension for Viewing Video Tags on YouTube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Tag Viewer for YouTube
ดาวน์โหลดไฟล์ส่วนขยาย Video Tag Viewer for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- Display meta tags for current viewing video.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Video Tag Viewer for YouTube |
ID | gcbndmenkdcbihmachfnhjfbbkgkmeog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/video-tag-viewer-for-yout/gcbndmenkdcbihmachfnhjfbbkgkmeog |
คำอธิบาย | Chrome Extension for Viewing Video Tags on YouTube. |
ขนาดไฟล์ | 7.08 KB |
จำนวนการติดตั้ง | 2,184 |
เวอร์ชันปัจจุบัน | 0.0.6 |
อัปเดตครั้งล่าสุด | 2023-01-01 |
วันที่เผยแพร่ | 2020-08-04 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://fiahfy.blogspot.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Video Tag Viewer for YouTube", "description": "Chrome Extension for Viewing Video Tags on YouTube.", "version": "0.0.6" } |