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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "OpenAI copy prompts and others to clipboard"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OpenAI copy prompts and others to clipboard एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            }
        }
    }
}