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]

O que é Fix Facebook Video Player?

Fix Facebook Video Player é uma extensão do Chrome desenvolvida por YG_CODES, e sua principal característica é "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fix Facebook Video Player

Baixe arquivos de extensão Fix Facebook Video Player no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]                    

Informações Básicas da Extensão

Nome Fix Facebook Video Player Fix Facebook Video Player
ID cphmifpmabdojeoeoahfiileopgekdlb
URL Oficial https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb
Descrição Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]
Tamanho do Arquivo 13.35 KB
Contagem de Instalações 79
Versão Atual 0.0.1
Última Atualização 2019-10-01
Data de Publicação 2019-10-01
Classificação 2.50/5 Total de 2 Avaliações
Desenvolvedor YG_CODES
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}