Vagupu Screen Capturing
This WebRTC screen capturing extension is to be used with vagupu.com application
Hvad er Vagupu Screen Capturing?
Vagupu Screen Capturing er en Chrome-udvidelse udviklet af vagupuad, og dens hovedfunktion er "This WebRTC screen capturing extension is to be used with vagupu.com application".
Udvidelsesskærmbilleder
Download Vagupu Screen Capturing-udvidelses-CRX-fil
Download Vagupu Screen Capturing-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Extension for capturing screen on vagupu applications. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | gccggbbdjkcnkbdbjenkmapkinjaennc |
| Officiel URL | https://chromewebstore.google.com/detail/vagupu-screen-capturing/gccggbbdjkcnkbdbjenkmapkinjaennc |
| Beskrivelse | This WebRTC screen capturing extension is to be used with vagupu.com application |
| Filstørrelse | 5.12 KB |
| Antal Installationer | 15 |
| Nuværende Version | 2.1 |
| Senest Opdateret | 2016-12-21 |
| Udgivelsesdato | 2016-12-21 |
| Udvikler | vagupuad |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Vagupu Screen Capturing",
"author": "Aman Gupta",
"version": "2.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "This WebRTC screen capturing extension is to be used with vagupu.com application",
"homepage_url": "https:\/\/www.vagupu.com",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/localhost\/*",
"https:\/\/www.vagupu.com\/*",
"https:\/\/*.vagupu.com\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture",
"management"
],
"web_accessible_resources": [
"icon.png"
]
} | |