WQRI Recorder
This program is built to record audio from audio streams on the WQRI website.
WQRI Recorderคืออะไร?
WQRI Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย WQRI 88.3 และคุณลักษณะหลักของมันคือ "This program is built to record audio from audio streams on the WQRI website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WQRI Recorder
ดาวน์โหลดไฟล์ส่วนขยาย WQRI Recorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The WQRI Recorder is designed specifically for recording audio from WQRI's website in an effort to create an archive of student curated shows for generations of students to experience in the future. This extension is easily configurable for the user and records high quality sounds straight through your browser!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WQRI Recorder |
ID | chpcjpecheclldlaadmlmaclhoflalbd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wqri-recorder/chpcjpecheclldlaadmlmaclhoflalbd |
คำอธิบาย | This program is built to record audio from audio streams on the WQRI website. |
ขนาดไฟล์ | 199 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 3.0.1 |
อัปเดตครั้งล่าสุด | 2021-09-24 |
วันที่เผยแพร่ | 2019-02-06 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | WQRI 88.3 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://wqri883fm.com |
URL หน้าช่วยเหลือ | http://wqri883fm.com/DJ/RecorderFAQ.pdf |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WQRI Recorder", "description": "This program is built to record audio from audio streams on the WQRI website.", "version": "3.0.1", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "WQRI Recorder" }, "options_page": "options.html", "background": { "scripts": [ "background.js", "worker.js" ], "persistent": true }, "permissions": [ "tabCapture", "downloads", "storage" ], "commands": { "start": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+U" }, "description": "Start Recording" }, "stop": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "MacCtrl+Shift+X" }, "description": "Stop Recording" } } } |