WQRI Recorder

This program is built to record audio from audio streams on the WQRI website.

Was ist WQRI Recorder?

WQRI Recorder ist eine Chrome-Erweiterung, die von WQRI 88.3 entwickelt wurde, und ihr Hauptmerkmal ist "This program is built to record audio from audio streams on the WQRI website.".

Erweiterungsscreenshots

screenshot

WQRI Recorder-Erweiterungs-CRX-Datei herunterladen

Laden Sie WQRI Recorder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name WQRI Recorder WQRI Recorder
ID chpcjpecheclldlaadmlmaclhoflalbd
Offizielle URL https://chromewebstore.google.com/detail/wqri-recorder/chpcjpecheclldlaadmlmaclhoflalbd
Beschreibung This program is built to record audio from audio streams on the WQRI website.
Dateigröße 199 KB
Installationsanzahl 1,000
Aktuelle Version 3.0.1
Letztes Update 2021-09-24
Veröffentlichungsdatum 2019-02-06
Bewertung 4.33/5 Insgesamt 6 Bewertungen
Entwickler WQRI 88.3
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://wqri883fm.com
Hilfeseite URL http://wqri883fm.com/DJ/RecorderFAQ.pdf
Unterstützte Sprachen 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"
        }
    }
}