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 |
Eメール | [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" } } } |