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]
¿Qué es Fix Facebook Video Player?
Fix Facebook Video Player es una extensión de Chrome desarrollada por YG_CODES, y su función principal es "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Fix Facebook Video Player
Descarga archivos de extensión Fix Facebook Video Player en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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]
Información Básica de la Extensión
Nombre | ![]() |
ID | cphmifpmabdojeoeoahfiileopgekdlb |
URL Oficial | https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb |
Descripción | Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected] |
Tamaño del Archivo | 13.35 KB |
Cantidad de Instalaciones | 79 |
Versión Actual | 0.0.1 |
Última Actualización | 2019-10-01 |
Fecha de Publicación | 2019-10-01 |
Calificación | 2.50/5 Total de 2 Calificaciones |
Desarrollador | YG_CODES |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |