WQRI Recorder

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

Cos'è WQRI Recorder?

WQRI Recorder è un'estensione di Chrome sviluppata da WQRI 88.3, e la sua funzione principale è "This program is built to record audio from audio streams on the WQRI website.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WQRI Recorder

Scarica i file di estensione WQRI Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome WQRI Recorder WQRI Recorder
ID chpcjpecheclldlaadmlmaclhoflalbd
URL Ufficiale https://chromewebstore.google.com/detail/wqri-recorder/chpcjpecheclldlaadmlmaclhoflalbd
Descrizione This program is built to record audio from audio streams on the WQRI website.
Dimensione del File 199 KB
Conteggio Installazioni 1,000
Versione Corrente 3.0.1
Ultimo Aggiornamento 2021-09-24
Data di Pubblicazione 2019-02-06
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore WQRI 88.3
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://wqri883fm.com
URL della Pagina di Aiuto http://wqri883fm.com/DJ/RecorderFAQ.pdf
Lingue Supportate 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"
        }
    }
}