Fix Facebook Video Player
Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]
Fix Facebook Video Playerคืออะไร?
Fix Facebook Video Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย YG_CODES และคุณลักษณะหลักของมันคือ "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fix Facebook Video Player
ดาวน์โหลดไฟล์ส่วนขยาย Fix Facebook Video Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension was created just for passing time and due to frustration of Facebook videos behavior when clicking on the video to pause it. with this extension, the video player behaves as expected, pausing and resuming playback on click. report bugs to [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | cphmifpmabdojeoeoahfiileopgekdlb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb |
คำอธิบาย | Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected] |
ขนาดไฟล์ | 13.35 KB |
จำนวนการติดตั้ง | 79 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2019-10-01 |
วันที่เผยแพร่ | 2019-10-01 |
คะแนน | 2.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | YG_CODES |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fix Facebook Video Player", "version": "0.0.1", "manifest_version": 2, "description": "Enable Pause\/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]", "icons": { "16": "Yg_fb_16.png", "48": "Yg_fb_48.png", "128": "Yg_fb_128.png" }, "homepage_url": "http:\/\/ygcodes.com", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Fix Facebook Video Player" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "js": [ "fix_fb_video.js" ] } ], "permissions": [ "*:\/\/*.facebook.com\/*", "tabs" ] } |