Video Volume Sync
Synchronizes the volume of html videos tags on any website.
Video Volume Sync란 무엇입니까?
Video Volume Sync은(는) dev.drew.rash에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Synchronizes the volume of html videos tags on any website."입니다.
확장 프로그램 스크린샷
Video Volume Sync 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It lowers the video volume on websites, any website. Websites that like to max the volume on their video's by default as they load and not remember your volume choice from before. It's really good for those websites. I know of 1 that starts with an F and end's in a K, that's definitely one this is good for. Specifically though, it sets the volume to 10% and then remembers your choice for the rest of the video's scrolling on the page. It set's the volume of loaded videos OnLoad, so if you set the volume to 50% and there are 5 video's that loaded before you changed it, those 5 will still by 10% but the next one to load will be 50%. Quite minimal. It's like such little code I could paste it here. I made a grease monkey script long ago and then I made this for those people. Then a fancy lawyer came along and took down my extension because it used a magical word that is trademarked like half the extensions in the chrome store and now it's back. Enjoy.
확장 프로그램 기본 정보
이름 | Video Volume Sync |
ID | fpdigdejpglgjlfjalijpehgbpgmpfoh |
공식 URL | https://chromewebstore.google.com/detail/video-volume-sync/fpdigdejpglgjlfjalijpehgbpgmpfoh |
설명 | Synchronizes the volume of html videos tags on any website. |
파일 크기 | 12.3 KB |
설치 횟수 | 168 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2018-07-26 |
출시 날짜 | 2018-07-25 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | dev.drew.rash |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Volume Sync", "short_name": "Vol Sync", "description": "Synchronizes the volume of html videos tags on any website.", "version": "1.0.5", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_start", "js": [ "filter.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "Click me for info!" }, "permissions": [ "storage" ] } |