AOE Twitch Sounds
Plays AOE sound effects for twitch chat
AOE Twitch Sounds란 무엇입니까?
AOE Twitch Sounds은(는) younglunaman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plays AOE sound effects for twitch chat"입니다.
확장 프로그램 스크린샷
AOE Twitch Sounds 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Plays Age of Empires II audio effects on Twitch.tv live streams. Just download the extension andthen go to an Age of Empires Twitch.tv live streamers channel, if you don't know what that is or where to go here's a link to the game category for twitch https://www.twitch.tv/directory/game/Age%20of%20Empires%20II , simply click on that link with the browser extension downloaded, and then type a number into the chat ranging from 1-105, you should hear a audio effect play. Supports taunts 1-105 in the game Age of Empires II customize options for the taunts you can play, and the delay between them caps out max number of taunts, with cooldown period to prevent spam. Dynamic volume, volume is based off of twitch stream volume for the taunts, also read's pausing stream and other features Same system of playing taunt effects as the actual game as far as I can tell. Note: If your web-browser doesn't support firefox or chrome extensions then please let me know or if it's having any issues on your browser then let me know.
확장 프로그램 기본 정보
이름 | |
ID | niodfkndhcmhngfimiajikkbolhigakj |
공식 URL | https://chromewebstore.google.com/detail/aoe-twitch-sounds/niodfkndhcmhngfimiajikkbolhigakj |
설명 | Plays AOE sound effects for twitch chat |
파일 크기 | 4.12 MB |
설치 횟수 | 51 |
현재 버전 | 1.0.9 |
최근 업데이트 | 2021-04-21 |
출시 날짜 | 2021-04-20 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | younglunaman |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/blockheads/AOETwitchSounds |
도움말 페이지 URL | https://github.com/blockheads/AOETwitchSounds |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AOE Twitch Sounds", "description": "Plays AOE sound effects for twitch chat", "version": "1.0.9", "manifest_version": 2, "web_accessible_resources": [ "sounds\/*.ogg", "images\/*.jpg", "images\/*.png", "icons\/*.png" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*", "http:\/\/*.twitch.tv\/*" ], "js": [ "constants.js", "observerManager.js", "options.js", "tauntPlayer.js", "uiManager.js", "content.js" ], "css": [ "content.css" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs" ] } |