Sound and video fixes for Facebook

Extension allows Facebook to 'remember' video volume level.

什么是Sound and video fixes for Facebook?

Sound and video fixes for Facebook是由Peter Pshenichny开发的Chrome扩展程序,该扩展的主要功能是“Extension allows Facebook to 'remember' video volume level.”。

扩展截图

screenshot
screenshot

下载Sound and video fixes for Facebook扩展crx文件

下载Sound and video fixes for Facebook扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Sound and video fixes for Facebook Sound and video fixes for Facebook
ID bffojpajjfmkcjpdenhfdlpjdbpflpbl
官方URL https://chromewebstore.google.com/detail/sound-and-video-fixes-for/bffojpajjfmkcjpdenhfdlpjdbpflpbl
简介 Extension allows Facebook to 'remember' video volume level.
文件大小 16.63 KB
安装次数 1,101
当前版本 1.0.1
更新时间 2020-05-07
上架时间 2020-05-07
评分 4.43/5 共14次评分
开发者 Peter Pshenichny
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/zagushka/social-network-video-volume-fix
支持的语言 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"
    }
}