StreamFixer
Grabs video elements and fixes them in an overlay, enabling window capturing in streaming software.
Was ist StreamFixer?
StreamFixer ist eine Chrome-Erweiterung, die von Csaba Kopias entwickelt wurde, und ihr Hauptmerkmal ist "Grabs video elements and fixes them in an overlay, enabling window capturing in streaming software.".
Erweiterungsscreenshots
StreamFixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie StreamFixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension is for you, if you want to broadcast a video chat to your audience from a streaming software like OBS, vMix, XSplit, Wirecast.
If you like this extension, please consider donating! Thank you:)
https://flattr.com/@kcsaba Grundlegende Informationen zur Erweiterung
| Name | |
| ID | koalccjpkobjlelaicppccppcffoikld |
| Offizielle URL | https://chromewebstore.google.com/detail/streamfixer/koalccjpkobjlelaicppccppcffoikld |
| Beschreibung | Grabs video elements and fixes them in an overlay, enabling window capturing in streaming software. |
| Dateigröße | 163 KB |
| Installationsanzahl | 188 |
| Aktuelle Version | 1.7.0 |
| Letztes Update | 2021-01-25 |
| Veröffentlichungsdatum | 2020-05-07 |
| Entwickler | Csaba Kopias |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/KopiasCsaba/StreamFixerBrowserExtension |
| Hilfeseite URL | https://github.com/KopiasCsaba/StreamFixerBrowserExtension/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "StreamFixer",
"version": "1.7.0",
"description": "Grabs video elements and fixes them in an overlay, enabling window capturing in streaming software.",
"manifest_version": 2,
"icons": {
"48": "icons\/mipmap-mdpi\/ic_launcher.png",
"72": "icons\/mipmap-hdpi\/ic_launcher.png",
"96": "icons\/mipmap-xhdpi\/ic_launcher.png",
"144": "icons\/mipmap-xxhdpi\/ic_launcher.png",
"128": "icons\/mipmap-128\/ic_launcher.png",
"192": "icons\/mipmap-xxxhdpi\/ic_launcher.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.whereby.com\/*",
"*:\/\/meet.jit.si\/*",
"*:\/\/meet.google.com\/*",
"*:\/\/discord.com\/*",
"*:\/\/app.livestorm.co\/*"
],
"js": [
"main.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |