Story Generator

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

What is Story Generator?

Story Generator is a Chrome extension developed by iroy2000, and its main feature is "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!".

Extension Screenshots

screenshot

Download Story Generator Extension CRX File

Download Story Generator 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 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                    

Extension Basic Information

Name Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
Official URL https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
Description A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
File Size 339 KB
Installation Count 99
Current Version 0.0.8
Last Updated 2023-03-18
Publish Date 2023-02-27
Rating 4.00/5 Total 1 Ratings
Developer iroy2000
Email [email protected]
Payment Type free
Supported Languages 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": []
        }
    ]
}