OpenAI copy prompts and others to clipboard

OpenAI copy prompts and others to clipboard

OpenAI copy prompts and others to clipboard란 무엇입니까?

OpenAI copy prompts and others to clipboard은(는) saikat guha에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OpenAI copy prompts and others to clipboard"입니다.

확장 프로그램 스크린샷

screenshot

OpenAI copy prompts and others to clipboard 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This simple extension allows you to copy to clipboard, the prompts and other settings that you have made on the page https://beta.openai.com/playground, 
so that you can share those easily with others. 
On installing the extension a button will appear on the page(https://beta.openai.com/playground) called "Copy Prompt and other settings to clipboard", clicking it will copy the prompts and other settings data to the clipboard                    

확장 프로그램 기본 정보

이름 OpenAI copy prompts and others to clipboard OpenAI copy prompts and others to clipboard
ID idcfjfbdfbeddfjgjloomfpaddfehkkf
공식 URL https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf
설명 OpenAI copy prompts and others to clipboard
파일 크기 4.15 KB
설치 횟수 261
현재 버전 0.1.0
최근 업데이트 2020-08-01
출시 날짜 2020-07-31
평점 1.00/5 총 1 개의 평점
개발자 saikat guha
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sktguha/openAIExt
도움말 페이지 URL https://github.com/sktguha/openAIExt/issues/new
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OpenAI copy prompts and others to clipboard",
    "short_name": "openAICopyToClip",
    "version": "0.1.0",
    "description": "OpenAI copy prompts and others to clipboard",
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/beta.openai.com\/playground\/*",
                "http:\/\/beta.openai.com\/playground\/*"
            ],
            "run_at": "document_end",
            "js": [
                "script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+E",
                "mac": "Command+E",
                "chromeos": "Ctrl+E",
                "linux": "Ctrl+E"
            }
        }
    }
}