OwnCast Extension
Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a…
OwnCast Extension란 무엇입니까?
OwnCast Extension은(는) craftamap에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a…"입니다.
확장 프로그램 스크린샷
OwnCast Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a self-hosted live video and web chat server for use with existing popular broadcasting software. Read more about owncast on the official website: https://owncast.online/ The OwnCast Browser Extension improves the OwnCast experience with the following, exciting features: • Follow instances: Whenever you visit an owncast instance, a "Add to Extension"-Button will appear. Click it, and it will automatically appear in the popup. • Manage followed instances: you can use the pop-up to manage instances. See who's online, their uptime and their viewers! • Get notified: Whenever a user goes online, you know it! A browser notification will appear. • Auto-name-changer: Tired of changing your user-name for each instance by hand? fear no more! Set your username in the extension settings once, and you are good to go! This extension is developed open-source under the MIT-License. You can find the code here: https://github.com/craftamap/owncast-browser-extension/
확장 프로그램 기본 정보
이름 | OwnCast Extension |
ID | djgneammmklaajinkihpibdpaflehgio |
공식 URL | https://chromewebstore.google.com/detail/owncast-extension/djgneammmklaajinkihpibdpaflehgio |
설명 | Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a… |
파일 크기 | 138 KB |
설치 횟수 | 66 |
현재 버전 | 0.5.0 |
최근 업데이트 | 2022-01-11 |
출시 날짜 | 2021-02-03 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | craftamap |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/craftamap/owncast-browser-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OwnCast Extension", "version": "0.5.0", "version_name": "0.5.0", "description": "", "icons": { "48": "resources\/icon-48.png", "96": "resources\/icon-96.png" }, "background": { "scripts": [ "\/js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/js\/content-script.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": "resources\/icon-32.png", "default_popup": "\/index.html", "default_title": "OwnCast Extension" }, "options_ui": { "page": "\/options.html" }, "permissions": [ "*:\/\/*\/*", "storage", "notifications" ] } |