Warpwire Screen Capture
This screen capturing extension allows for the capture of screen or application window data into Warpwire.
Warpwire Screen Capture là gì?
Warpwire Screen Capture là một tiện ích mở rộng Chrome được phát triển bởi warpwiredev, và tính năng chính của nó là "This screen capturing extension allows for the capture of screen or application window data into Warpwire.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Warpwire Screen Capture
Tải xuống các tệp mở rộng Warpwire Screen Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Warpwire Screen Capture |
ID | iljpecogeagjijkjnnghgapofcdejmej |
URL Chính Thức | https://chromewebstore.google.com/detail/warpwire-screen-capture/iljpecogeagjijkjnnghgapofcdejmej |
Mô tả | This screen capturing extension allows for the capture of screen or application window data into Warpwire. |
Kích Thước Tệp | 11.67 KB |
Số Lần Cài Đặt | 617 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2017-10-05 |
Ngày Phát Hành | 2017-10-05 |
Đánh Giá | 4.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | warpwiredev |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.warpwire.com/ |
URL Trang Trợ Giúp | https://www.warpwire.com/support/capture/screen-capture |
URL Trang Chính Sách Bảo Mật | https://www.warpwire.com/legal/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |