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
电子邮箱 [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"
            }
        }
    }
}