Warpwire Screen Capture
This screen capturing extension allows for the capture of screen or application window data into Warpwire.
Vad är Warpwire Screen Capture?
Warpwire Screen Capture är en Chrome-tillägg utvecklad av warpwiredev, och dess huvudfunktion är "This screen capturing extension allows for the capture of screen or application window data into Warpwire.".
Tilläggsskärmbilder
Ladda ner Warpwire Screen Capture-förlängningens CRX-fil
Ladda ner Warpwire Screen Capture-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
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
Grundläggande Information om Tillägg
Namn | Warpwire Screen Capture |
ID | iljpecogeagjijkjnnghgapofcdejmej |
Officiell webbadress | https://chromewebstore.google.com/detail/warpwire-screen-capture/iljpecogeagjijkjnnghgapofcdejmej |
Beskrivning | This screen capturing extension allows for the capture of screen or application window data into Warpwire. |
Filstorlek | 11.67 KB |
Antal Installationer | 617 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2017-10-05 |
Publiceringsdatum | 2017-10-05 |
Betyg | 4.00/5 Totalt 5 Betyg |
Utvecklare | warpwiredev |
Betalningssätt | free |
Tilläggswebbplats | https://www.warpwire.com/ |
Hjälpsida URL | https://www.warpwire.com/support/capture/screen-capture |
URL till Sekretesspolicy Sidan | https://www.warpwire.com/legal/privacy-policy |
Stödda Språk | 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" ] } |