Sound and video fixes for Facebook

Extension allows Facebook to 'remember' video volume level.

Sound and video fixes for Facebook là gì?

Sound and video fixes for Facebook là một tiện ích mở rộng Chrome được phát triển bởi Peter Pshenichny, và tính năng chính của nó là "Extension allows Facebook to 'remember' video volume level.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sound and video fixes for Facebook

Tải xuống các tệp mở rộng Sound and video fixes for Facebook 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

                        If you are tired of Facebook video "screamers", want to make sure next video you watch persist previous video volume level - this extension for you.

* Preserve volume level between videos and sessions.
* Force ads to play with the same volume level as the videos.
* Remove Mute from videos at "Messages" area.
* Fixes Facebook native volume up/down with simultaneous scroll functionality.
* Using ease volume change for fine tuning when using keyboard shortcuts.
* Change volume level with configurable keyboard shortcuts.
  * Alt + Shift + Up = Volume Up
  * Alt + Shift + Down = Volume Down
  * Alt + Shift + M = Toggle Mute

It is open source
Feel free to check it here: https://github.com/zagushka/social-network-video-volume-fix                    

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

Tên Sound and video fixes for Facebook Sound and video fixes for Facebook
ID bffojpajjfmkcjpdenhfdlpjdbpflpbl
URL Chính Thức https://chromewebstore.google.com/detail/sound-and-video-fixes-for/bffojpajjfmkcjpdenhfdlpjdbpflpbl
Mô tả Extension allows Facebook to 'remember' video volume level.
Kích Thước Tệp 16.63 KB
Số Lần Cài Đặt 1,101
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-05-07
Ngày Phát Hành 2020-05-07
Đánh Giá 4.43/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Peter Pshenichny
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zagushka/social-network-video-volume-fix
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/www.facebook.com\/*",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon.16.png",
        "32": "icons\/icon.32.png",
        "48": "icons\/icon.48.png",
        "128": "icons\/icon.128.png"
    },
    "commands": {
        "toggle-volume": {
            "suggested_key": {
                "default": "Alt+Shift+M",
                "mac": "Alt+Shift+M"
            },
            "description": "__MSG_toggleSound__",
            "global": false
        },
        "volume-up": {
            "suggested_key": {
                "default": "Alt+Shift+Up",
                "mac": "Alt+Shift+Up"
            },
            "description": "__MSG_volumeUp__",
            "global": false
        },
        "volume-down": {
            "suggested_key": {
                "default": "Alt+Shift+Down",
                "mac": "Alt+Shift+Down"
            },
            "description": "__MSG_volumeDown__",
            "global": false
        }
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content\/content.js"
            ],
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html"
    }
}