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ファイルをダウンロード
OwnCast Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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/ 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |