Warpwire Screen Capture
This screen capturing extension allows for the capture of screen or application window data into Warpwire.
Qu'est-ce que Warpwire Screen Capture ?
Warpwire Screen Capture est une extension Chrome développée par warpwiredev, et sa fonction principale est "This screen capturing extension allows for the capture of screen or application window data into Warpwire.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Warpwire Screen Capture
Téléchargez les fichiers d'extension Warpwire Screen Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Warpwire Screen Capture is a free extension that allows Warpwire users to record their screens and save the recording to Warpwire, without leaving the browser. This extension is required for Screen Capture within Warpwire. Any Warpwire user who is interested in screen capture should install this plugin. Users can record either an individual window, or their entire screen. Simply install the extension and make a recording. * Screen Capture within the Browser * Save recordings directly to Warpwire Media Libraries * Record entire screen or single window * Use native camera and mic, or attached USB cameras and mic
Informations de Base sur l'Extension
Nom | Warpwire Screen Capture |
ID | iljpecogeagjijkjnnghgapofcdejmej |
URL Officiel | https://chromewebstore.google.com/detail/warpwire-screen-capture/iljpecogeagjijkjnnghgapofcdejmej |
Description | This screen capturing extension allows for the capture of screen or application window data into Warpwire. |
Taille du Fichier | 11.67 KB |
Nombre d'Installations | 617 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-10-05 |
Date de Publication | 2017-10-05 |
Évaluation | 4.00/5 Total 5 Évaluations |
Développeur | warpwiredev |
Type de Paiement | free |
Site Web de l'Extension | https://www.warpwire.com/ |
URL de la Page d'Aide | https://www.warpwire.com/support/capture/screen-capture |
URL de la Page de Politique de Confidentialité | https://www.warpwire.com/legal/privacy-policy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Warpwire Screen Capture", "author": "Warpwire", "version": "1.0.0", "default_locale": "en", "manifest_version": 2, "minimum_chrome_version": "34", "description": "This screen capturing extension allows for the capture of screen or application window data into Warpwire.", "homepage_url": "https:\/\/www.warpwire.com", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/bootstrap.warpwire.com\/*" ] } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon-48.png", "icon-128.png" ] } |