Screen Recorder
Records a narrated video of your computer screen
什么是Screen Recorder?
Screen Recorder是由https://userbob.com开发的Chrome扩展程序,该扩展的主要功能是“Records a narrated video of your computer screen”。
扩展截图
下载Screen Recorder扩展crx文件
下载Screen Recorder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension provides a simple way to record short videos of your computer's screen. To stop recording and download your video, tap the extension's icon and click "End Recording". This provides an easy way to create a screencast or tutorial of how to do something on a computer. Perfect for recording user testing sessions as well. Great for UserBob HITs on mturk. DO NOT ATTEMPT TO USE THIS TO RECORD VIDEOS LONGER THAN 30 MINUTES. Many users have reported that the extension won't save videos that are longer than that. The code for this open source project is available at: https://github.com/JohnWeidner/ScreenRecorderExtension Privacy Policy is available at: https://userbob.com/screenRecorderPrivacy.html
扩展基本信息
名称 | Screen Recorder |
ID | olfiakiemgabphalhjfjbcmganhfkbcg |
官方URL | https://chromewebstore.google.com/detail/screen-recorder/olfiakiemgabphalhjfjbcmganhfkbcg |
简介 | Records a narrated video of your computer screen |
文件大小 | 217 KB |
安装次数 | 44,245 |
当前版本 | 0.20.4 |
更新时间 | 2023-03-06 |
上架时间 | 2018-09-12 |
评分 | 2.85/5 共55次评分 |
开发者 | https://userbob.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://userbob.com/screenRecorderPrivacy.html |
帮助页面URL | https://userbob.com/screenRecorderPrivacy.html |
隐私政策页面URL | https://userbob.com/screenRecorderPrivacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Recorder", "description": "Records a narrated video of your computer screen", "version": "0.20.4", "manifest_version": 2, "icons": { "16": "assets\/icon.png", "128": "assets\/icon.png" }, "background": { "scripts": [ "src\/background.js", "src\/ourrecorder.js" ] }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "src\/receiver.html" }, "options_ui": { "page": "src\/options.html", "chrome_style": true }, "permissions": [ "desktopCapture", "notifications", "activeTab", "storage", "unlimitedStorage", "downloads" ] } |