WQRI Recorder
This program is built to record audio from audio streams on the WQRI website.
WQRI Recorder là gì?
WQRI Recorder là một tiện ích mở rộng Chrome được phát triển bởi WQRI 88.3, và tính năng chính của nó là "This program is built to record audio from audio streams on the WQRI website.".
Ả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 WQRI Recorder
Tải xuống các tệp mở rộng WQRI Recorder 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
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WQRI Recorder |
ID | chpcjpecheclldlaadmlmaclhoflalbd |
URL Chính Thức | https://chromewebstore.google.com/detail/wqri-recorder/chpcjpecheclldlaadmlmaclhoflalbd |
Mô tả | This program is built to record audio from audio streams on the WQRI website. |
Kích Thước Tệp | 199 KB |
Số Lần Cài Đặt | 1,000 |
Phiên Bản Hiện Tại | 3.0.1 |
Cập Nhật Lần Cuối | 2021-09-24 |
Ngày Phát Hành | 2019-02-06 |
Đánh Giá | 4.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | WQRI 88.3 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://wqri883fm.com |
URL Trang Trợ Giúp | http://wqri883fm.com/DJ/RecorderFAQ.pdf |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |