Generative Prompts
An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.
Generative Prompts란 무엇입니까?
Generative Prompts은(는) https://alpererdogan.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator."입니다.
확장 프로그램 스크린샷
Generative Prompts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is a simple ChatGPT interface that provides a facilitating interface for queries created for ChatGPT by contributors to the awesome ChatGPT Prompts repository, and personality prompts for a machine learning model trained on this repository's dataset. Prompt collection repository created for ChatGPT prompts https://github.com/f/awesome-chatgpt-prompts BART model trained with these prompts https://huggingface.co/merve/chatgpt-prompt-generator-v12 If you want to contribute https://github.com/alpererdogan8/generative-prompts
확장 프로그램 기본 정보
이름 | Generative Prompts |
ID | jhjnkdgjladjimcaoefapnnllkcbmldh |
공식 URL | https://chromewebstore.google.com/detail/generative-prompts/jhjnkdgjladjimcaoefapnnllkcbmldh |
설명 | An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator. |
파일 크기 | 112 KB |
설치 횟수 | 34 |
현재 버전 | 1.0.7 |
최근 업데이트 | 2024-01-04 |
출시 날짜 | 2023-02-28 |
개발자 | https://alpererdogan.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/alpererdogan8/generative-prompts |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Generative Prompts", "action": [], "manifest_version": 3, "version": "1.0.7", "description": "An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "host_permissions": [ "https:\/\/raw.githubusercontent.com\/f\/awesome-chatgpt-prompts\/main\/prompts.csv", "https:\/\/merve-chatgpt-prompt-generator-v12.hf.space\/run\/predict" ], "permissions": [ "storage" ], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "content_scripts": [ { "js": [ "assets\/content-script-loader.main.jsx-e74a00a6-9976c30b.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ], "css": [ "assets\/main-2ce0ebe1.css" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "assets\/main.jsx-e74a00a6.js" ], "use_dynamic_url": true } ] } |