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."입니다.
확장 프로그램 스크린샷
Sound and video fixes for Facebook 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |