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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Jeopardy Labs to CSV |
ID | biijijhfghhckhlkjbonjedmgnkmenlk |
공식 URL | 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" } } |