Twitch Tabs
Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Twitch Tabs란 무엇입니까?
Twitch Tabs은(는) RocketBuilt Apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!"입니다.
확장 프로그램 스크린샷
Twitch Tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simply log in to you Twitch account through the extension and set your favorite streams! Easily track your favorite streamers and see when they are online. Twitch Tabs allows you to open all of your favorite online Twitch streams in tabs with the click of a button or individual streams. Update 0.4.1: Implemented Chrome Notifications with the ability to toggle on and off Bug fixes
확장 프로그램 기본 정보
이름 | Twitch Tabs |
ID | bnaleaigeeaockjojmidjnpfkhaobdbg |
공식 URL | https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg |
설명 | Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online! |
파일 크기 | 1.19 MB |
설치 횟수 | 86 |
현재 버전 | 0.4.1 |
최근 업데이트 | 2020-12-26 |
출시 날짜 | 2020-12-25 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | RocketBuilt Apps |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/tylern88/streamertabs/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Tabs", "version": "0.4.1", "description": "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!", "permissions": [ "identity", "storage", "notifications", "alarms", "https:\/\/id.twitch.tv\/*" ], "background": { "scripts": [ "static\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "static\/js\/content.js" ], "matches": [ "https:\/\/*.twitch.tv\/*" ] } ], "icons": { "192": "logo192.png" }, "browser_action": { "default_icon": { "192": "logo192.png" }, "default_title": "Twitch Tabs", "default_popup": "popup.html" }, "options_ui": { "page": "options.html" } } |