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 là gì?

Fix Facebook Video Player là một tiện ích mở rộng Chrome được phát triển bởi YG_CODES, và tính năng chính của nó là "Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fix Facebook Video Player

Tải xuống các tệp mở rộng Fix Facebook Video Player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fix Facebook Video Player Fix Facebook Video Player
ID cphmifpmabdojeoeoahfiileopgekdlb
URL Chính Thức https://chrome.google.com/webstore/detail/fix-facebook-video-player/cphmifpmabdojeoeoahfiileopgekdlb
Mô tả Enable Pause/Play on facebook videos by clicking on the screen, instead of the annoying popup. report bugs to [email protected]
Kích Thước Tệp 13.35 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2019-10-01
Ngày Phát Hành 2019-10-01
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển YG_CODES
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}