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 |
官方網址 | 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" } } } |