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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enchant your OwnCast experience with the OwnCast Browser Extension! This extension is a companion extension to Owncast, a…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OwnCast Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}