Screen Recorder
Records a narrated video of your computer screen
Screen Recorderคืออะไร?
Screen Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://userbob.com และคุณลักษณะหลักของมันคือ "Records a narrated video of your computer screen"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screen Recorder
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |