WQRI Recorder

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

Hvad er WQRI Recorder?

WQRI Recorder er en Chrome-udvidelse udviklet af WQRI 88.3, og dens hovedfunktion er "This program is built to record audio from audio streams on the WQRI website.".

Udvidelsesskærmbilleder

screenshot

Download WQRI Recorder-udvidelses-CRX-fil

Download WQRI Recorder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn WQRI Recorder WQRI Recorder
ID chpcjpecheclldlaadmlmaclhoflalbd
Officiel URL https://chromewebstore.google.com/detail/wqri-recorder/chpcjpecheclldlaadmlmaclhoflalbd
Beskrivelse This program is built to record audio from audio streams on the WQRI website.
Filstørrelse 199 KB
Antal Installationer 1,000
Nuværende Version 3.0.1
Senest Opdateret 2021-09-24
Udgivelsesdato 2019-02-06
Bedømmelse 4.33/5 Samlet 6 Bedømmelser
Udvikler WQRI 88.3
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://wqri883fm.com
Hjælpeside-URL http://wqri883fm.com/DJ/RecorderFAQ.pdf
Understøttede Sprog 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"
        }
    }
}