Jeopardy Labs to CSV
Export a Jeopardy Labs game to a CSV Template
什麼是Jeopardy Labs to CSV?
Jeopardy Labs to CSV是由bennyfi4開發的Chrome擴展程式,該擴展的主要功能是“Export a Jeopardy Labs game to a CSV Template”。
擴展截圖
下載Jeopardy Labs to CSV擴展crx文件
下載Jeopardy Labs to CSV擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | biijijhfghhckhlkjbonjedmgnkmenlk |
| 官方網址 | https://chromewebstore.google.com/detail/jeopardy-labs-to-csv/biijijhfghhckhlkjbonjedmgnkmenlk |
| 簡介 | Export a Jeopardy Labs game to a CSV Template |
| 檔案大小 | 17.32 KB |
| 安裝次數 | 75 |
| 目前版本 | 1.0 |
| 更新時間 | 2023-08-29 |
| 上架時間 | 2022-11-23 |
| 開發者 | bennyfi4 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://docs.aipromptgenius.app/privacy |
| 支援的語言 | 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"
}
} | |