Tiktok Audio Control
Control the audio of the video player on tiktoks web client
Tiktok Audio Control란 무엇입니까?
Tiktok Audio Control은(는) Meeoh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control the audio of the video player on tiktoks web client"입니다.
확장 프로그램 스크린샷
Tiktok Audio Control 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a plus and minus volume button and automatically sets the default tiktok volume on chrome to 10%. Increments are 5% but are customizable from the options page!
확장 프로그램 기본 정보
이름 | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
공식 URL | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
설명 | Control the audio of the video player on tiktoks web client |
파일 크기 | 39.65 KB |
설치 횟수 | 4,000 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2021-08-25 |
출시 날짜 | 2020-06-24 |
평점 | 3.58/5 총 31 개의 평점 |
개발자 | Meeoh |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiktok Audio Control", "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "version": "0.1.0", "manifest_version": 2, "description": "Control the audio of the video player on tiktoks web client", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "https:\/\/www.tiktok.com\/*", "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/www.tiktok.com\/*" ], "js": [ "src\/index.js" ], "run_at": "document_end" } ] } |