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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } |