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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |