Story Generator

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

Wat is Story Generator?

Story Generator is een Chrome-extensie ontwikkeld door iroy2000, en de belangrijkste functie is "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Story Generator

Download Story Generator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
Officiële URL https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
Beschrijving A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
Bestandsgrootte 339 KB
Aantal Installaties 99
Huidige Versie 0.0.8
Laatst Bijgewerkt 2023-03-18
Publicatiedatum 2023-02-27
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar iroy2000
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": []
        }
    ]
}