Story Generator

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

Story Generatorคืออะไร?

Story Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iroy2000 และคุณลักษณะหลักของมันคือ "A chrome extension that unleash your creativity to generate inspiring stories with OpenAI!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Story Generator

ดาวน์โหลดไฟล์ส่วนขยาย 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": []
        }
    ]
}