Story Generator

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

Qu'est-ce que Story Generator ?

Story Generator est une extension Chrome développée par iroy2000, et sa fonction principale est "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Story Generator

Téléchargez les fichiers d'extension Story Generator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
URL Officiel https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
Description A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
Taille du Fichier 339 KB
Nombre d'Installations 99
Version Actuelle 0.0.8
Dernière Mise à Jour 2023-03-18
Date de Publication 2023-02-27
Évaluation 4.00/5 Total 1 Évaluations
Développeur iroy2000
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": []
        }
    ]
}