Bitsjourney : Retro Game Graphics Generator

Bitsjourney is an AI engine for generating retro game style images by color reduction and resolution reduction.

Bitsjourney : Retro Game Graphics Generatorคืออะไร?

Bitsjourney : Retro Game Graphics Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย qhapaq_49 และคุณลักษณะหลักของมันคือ "Bitsjourney is an AI engine for generating retro game style images by color reduction and resolution reduction."

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitsjourney : Retro Game Graphics Generator

ดาวน์โหลดไฟล์ส่วนขยาย Bitsjourney : Retro Game Graphics Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Bitsjourney converts your images into retro game style images (e.g. NES and SNES) by color reduction and resolution reduction. Bitsjourney is equipped with a unique image processing AI that realizes high-speed and high-quality image conversion. The image conversion takes place inside your computer so your privacy is not violated by tracking. Bitsjourney is open source and you can read its source code in the project page.

Manual url : https://github.com/qhapaq-49/bitsjourney/tree/master/manuals/chrome

Note : Images used as thumbnails are from the Japanese version of wikipedia. Kizuna AI images (and images converted by Bitjourney) are licensed under CC BY-SA 3.0. Images of Nishimura Hiroyuki are licensed under CC BY-SA 2.5

© Kizuna AI, SCP Foundation., CC BY-SA 3.0
Joichi Ito - Original text: Taken by author Transferred from English Wikipedia                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bitsjourney : Retro Game Graphics Generator Bitsjourney : Retro Game Graphics Generator
ID ollneaflfdbmjhadhfbdghlmmheenoii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bitsjourney-retro-game-gr/ollneaflfdbmjhadhfbdghlmmheenoii
คำอธิบาย Bitsjourney is an AI engine for generating retro game style images by color reduction and resolution reduction.
ขนาดไฟล์ 244 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2022-09-21
วันที่เผยแพร่ 2022-09-16
ผู้พัฒนา qhapaq_49
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/qhapaq-49/bitjourney/tree/master/manuals/chrome
URL หน้าช่วยเหลือ https://github.com/qhapaq-49/bitjourney/tree/master/manuals/chrome
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitsjourney : Retro Game Graphics Generator",
    "version": "0.0.3",
    "default_locale": "en",
    "manifest_version": 3,
    "description": "Bitsjourney is an AI engine for generating retro game style images by color reduction and resolution reduction.",
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "img\/icon-16x16.png",
        "48": "img\/icon-48x48.png",
        "128": "img\/icon-128x128.png"
    },
    "action": {
        "default_icon": "img\/icon-16x16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "image_parse.js",
                "popup.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}