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ファイルをダウンロード

OpenAI copy prompts and others to clipboard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            }
        }
    }
}