OpenAI copy prompts and others to clipboard

OpenAI copy prompts and others to clipboard

What is OpenAI copy prompts and others to clipboard?

OpenAI copy prompts and others to clipboard is a Chrome extension developed by saikat guha, and its main feature is "OpenAI copy prompts and others to clipboard".

Extension Screenshots

screenshot

Download OpenAI copy prompts and others to clipboard Extension CRX File

Download OpenAI copy prompts and others to clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name OpenAI copy prompts and others to clipboard OpenAI copy prompts and others to clipboard
ID idcfjfbdfbeddfjgjloomfpaddfehkkf
Official URL https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf
Description OpenAI copy prompts and others to clipboard
File Size 4.15 KB
Installation Count 261
Current Version 0.1.0
Last Updated 2020-08-01
Publish Date 2020-07-31
Rating 1.00/5 Total 1 Ratings
Developer saikat guha
Email [email protected]
Payment Type free
Extension Website https://github.com/sktguha/openAIExt
Help Page URL https://github.com/sktguha/openAIExt/issues/new
Supported Languages 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"
            }
        }
    }
}