Story Generator

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

什么是Story Generator?

Story Generator是由iroy2000开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!”。

扩展截图

screenshot

下载Story Generator扩展crx文件

下载Story Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Story Generator Story Generator
ID cgpbdlilmpcccbffmeemfneapadblnmk
官方URL https://chromewebstore.google.com/detail/story-generator/cgpbdlilmpcccbffmeemfneapadblnmk
简介 A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!
文件大小 339 KB
安装次数 99
当前版本 0.0.8
更新时间 2023-03-18
上架时间 2023-02-27
评分 4.00/5 共1次评分
开发者 iroy2000
电子邮箱 [email protected]
付费类型 free
支持的语言 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": []
        }
    ]
}