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'est-ce que Fix Facebook Video Player ?

Fix Facebook Video Player est une extension Chrome développée par YG_CODES, et sa fonction principale est "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fix Facebook Video Player

Téléchargez les fichiers d'extension Fix Facebook Video Player au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom Fix Facebook Video Player Fix Facebook Video Player
ID cphmifpmabdojeoeoahfiileopgekdlb
URL Officiel https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb
Description Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]
Taille du Fichier 13.35 KB
Nombre d'Installations 79
Version Actuelle 0.0.1
Dernière Mise à Jour 2019-10-01
Date de Publication 2019-10-01
Évaluation 2.50/5 Total 2 Évaluations
Développeur YG_CODES
Type de Paiement free
Langues Prises en Charge 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"
    ]
}