OwnCast Extension
Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a…
¿Qué es OwnCast Extension?
OwnCast Extension es una extensión de Chrome desarrollada por craftamap, y su función principal es "Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión OwnCast Extension
Descarga archivos de extensión OwnCast Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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/
Información Básica de la Extensión
Nombre | OwnCast Extension |
ID | djgneammmklaajinkihpibdpaflehgio |
URL Oficial | https://chromewebstore.google.com/detail/owncast-extension/djgneammmklaajinkihpibdpaflehgio |
Descripción | Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a… |
Tamaño del Archivo | 138 KB |
Cantidad de Instalaciones | 66 |
Versión Actual | 0.5.0 |
Última Actualización | 2022-01-11 |
Fecha de Publicación | 2021-02-03 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | craftamap |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/craftamap/owncast-browser-extension |
Idiomas Soportados | 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" ] } |