Story Generator

A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!

Story Generator क्या है?

Story Generator iroy2000 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!"।

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

screenshot

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

crx प्रारूप में Story Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a project developed for my kids to learn about AI.  To be honest, I don't want too many people to install it because it cost me $$ when people play around :p                    

एक्सटेंशन की मूल जानकारी

नाम Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
आधिकारिक URL https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
विवरण A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
फ़ाइल का आकार 339 KB
स्थापना संख्या 99
वर्तमान संस्करण 0.0.8
अंतिम अपडेट 2023-03-18
प्रकाशन तिथि 2023-02-27
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर iroy2000
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!",
    "version": "0.0.8",
    "manifest_version": 3,
    "name": "Story Generator",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/open-ai-func.azurewebsites.net\/*",
                "https:\/\/open-ai-func.azurewebsites.net\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}