Jeopardy Labs to CSV
Export a Jeopardy Labs game to a CSV Template
Apa itu Jeopardy Labs to CSV?
Jeopardy Labs to CSV adalah ekstensi Chrome yang dikembangkan oleh bennyfi4, dan fitur utamanya adalah "Export a Jeopardy Labs game to a CSV Template".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Jeopardy Labs to CSV
Unduh file ekstensi Jeopardy Labs to CSV dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Jeopardy Labs to CSV |
ID | biijijhfghhckhlkjbonjedmgnkmenlk |
URL Resmi | https://chromewebstore.google.com/detail/jeopardy-labs-to-csv/biijijhfghhckhlkjbonjedmgnkmenlk |
Deskripsi | Export a Jeopardy Labs game to a CSV Template |
Ukuran File | 17.32 KB |
Jumlah Instalasi | 75 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-08-29 |
Tanggal Publikasi | 2022-11-23 |
Pengembang | bennyfi4 |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://docs.aipromptgenius.app/privacy |
Bahasa yang Didukung | 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" } } |