WQRI Recorder
This program is built to record audio from audio streams on the WQRI website.
什么是WQRI Recorder?
WQRI Recorder是由WQRI 88.3开发的Chrome扩展程序,该扩展的主要功能是“This program is built to record audio from audio streams on the WQRI website.”。
扩展截图
下载WQRI Recorder扩展crx文件
下载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" } } } |