Story Generator

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

Cos'è Story Generator?

Story Generator è un'estensione di Chrome sviluppata da iroy2000, e la sua funzione principale è "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Story Generator

Scarica i file di estensione Story Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
URL Ufficiale https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
Descrizione A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
Dimensione del File 339 KB
Conteggio Installazioni 99
Versione Corrente 0.0.8
Ultimo Aggiornamento 2023-03-18
Data di Pubblicazione 2023-02-27
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore iroy2000
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": []
        }
    ]
}