Story Generator

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

Apa itu Story Generator?

Story Generator adalah ekstensi Chrome yang dikembangkan oleh iroy2000, dan fitur utamanya adalah "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Story Generator

Unduh file ekstensi Story Generator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
URL Resmi https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
Deskripsi A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
Ukuran File 339 KB
Jumlah Instalasi 99
Versi Saat Ini 0.0.8
Terakhir Diperbarui 2023-03-18
Tanggal Publikasi 2023-02-27
Penilaian 4.00/5 Total 1 Penilaian
Pengembang iroy2000
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": []
        }
    ]
}