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]”。

扩展截图

screenshot

下载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]                    

扩展基本信息

名称 Fix Facebook Video Player Fix Facebook Video Player
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"
    ]
}