Jeopardy Labs to CSV
Export a Jeopardy Labs game to a CSV Template
Was ist Jeopardy Labs to CSV?
Jeopardy Labs to CSV ist eine Chrome-Erweiterung, die von bennyfi4 entwickelt wurde, und ihr Hauptmerkmal ist "Export a Jeopardy Labs game to a CSV Template".
Erweiterungsscreenshots
Jeopardy Labs to CSV-Erweiterungs-CRX-Datei herunterladen
Laden Sie Jeopardy Labs to CSV-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
Export a Jeopardy Labs game to a simple CSV template for use in other software. Works with the JParty template. Simply click the icon when on a Jeopardy Labs page and watch the extension convert the page to CSV.
To use the extension:
1. Find a game on https://jeopardylabs.com.
2. Click the extension icon.
3. The questions will download as a csv (spreadsheet) in the style of the JParty template.
See https://github.com/benf2004/JParty for more. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | biijijhfghhckhlkjbonjedmgnkmenlk |
| Offizielle URL | https://chromewebstore.google.com/detail/jeopardy-labs-to-csv/biijijhfghhckhlkjbonjedmgnkmenlk |
| Beschreibung | Export a Jeopardy Labs game to a CSV Template |
| Dateigröße | 17.32 KB |
| Installationsanzahl | 75 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2023-08-29 |
| Veröffentlichungsdatum | 2022-11-23 |
| Entwickler | bennyfi4 |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://docs.aipromptgenius.app/privacy |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Jeopardy Labs to CSV",
"description": "Export a Jeopardy Labs game to a CSV Template",
"version": "1.0",
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/jeopardylabs.com\/*"
],
"js": [
"export.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "16x16.png",
"32": "32x32.png",
"48": "48x48.png",
"128": "128x128.png"
}
} | |