Live video recorder
Record live stream!
Vad är Live video recorder?
Live video recorder är en Chrome-tillägg utvecklad av https://yoyo.dev, och dess huvudfunktion är "Record live stream!".
Tilläggsskärmbilder
Ladda ner Live video recorder-förlängningens CRX-fil
Ladda ner Live video recorder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Record any HTML5 video or livestream by right clicking on it.
V0.6
✨ Displays a red icon when recording
✨ Now supports multiple recordings at the same time
🛠️ Only the audio is recorded?
✔️ If you are using Windows, you might need to install VLC(https://www.videolan.org/) to play recorded videos. Grundläggande Information om Tillägg
| Namn | |
| ID | nieboggmgpnmaiedgpcackjnpjakgfaf |
| Officiell webbadress | https://chromewebstore.google.com/detail/live-video-recorder/nieboggmgpnmaiedgpcackjnpjakgfaf |
| Beskrivning | Record live stream! |
| Filstorlek | 18.39 KB |
| Antal Installationer | 7,505 |
| Aktuell Version | 0.7 |
| Senast Uppdaterad | 2021-04-29 |
| Publiceringsdatum | 2019-08-05 |
| Betyg | 2.60/5 Totalt 15 Betyg |
| Utvecklare | https://yoyo.dev |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en,fr,es,zh-CN,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.7",
"manifest_version": 2,
"description": "__MSG_appDesc__",
"author": "Yohan Galerneau",
"default_locale": "en",
"icons": {
"128": "icon.png"
},
"permissions": [
"contextMenus",
"downloads"
],
"background": {
"scripts": [
"script.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
]
}
]
} | |