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是由YG_CODES開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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" ] } |