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 |
公式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" ] } |