ASO Assistant with ChatGPT

Automation tool with ChatGPT for Google Play & Apple app store optimization, summary reviews, keyword, descriptions and more

ASO Assistant with ChatGPTคืออะไร?

ASO Assistant with ChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://asotools.io และคุณลักษณะหลักของมันคือ "Automation tool with ChatGPT for Google Play & Apple app store optimization, summary reviews, keyword, descriptions and more"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ASO Assistant with ChatGPT

ดาวน์โหลดไฟล์ส่วนขยาย ASO Assistant with ChatGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension combines the power of chatgpt's AI capabilities to help you with your app store optimization (ASO). It can analyze your competitors' store descriptions, intelligently extract keywords, generate app descriptions and keywords, and reply to reviews.

This extension helps you optimize your app store search ranking quickly, increasing your app's visibility and downloads with just one click.

🌟 How it works🌟
1. Log in to your Openai account
2. Select any content by your mouse in Google Play Store
3. Click on Cmd+B (Mac) or Ctrl+B (Windows) to open extension
4. Add prompt text and then click the switch icon, it will automatically jump to the chatgpt website and generate content

It is user-friendly, making it easy to use even for those without professional ASO experience.If you want your app to get more exposure and downloads in the app store, this Chrome extension is the perfect choice. 

Download this extension now and make your app shine in the Apple app store G play store!                    

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

ชื่อ ASO Assistant with ChatGPT ASO Assistant with ChatGPT
ID oeamlppmgknmkhckfhimadakddhlmjhe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aso-assistant-with-chatgp/oeamlppmgknmkhckfhimadakddhlmjhe
คำอธิบาย Automation tool with ChatGPT for Google Play & Apple app store optimization, summary reviews, keyword, descriptions and more
ขนาดไฟล์ 75.12 KB
จำนวนการติดตั้ง 355
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-03-25
วันที่เผยแพร่ 2023-03-24
ผู้พัฒนา https://asotools.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://asotools.io/
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "version": "1.0.0",
    "default_locale": "en",
    "icons": {
        "16": "icons\/logo-16.png",
        "128": "icons\/logo.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_title": "GPT Popup",
        "default_icon": {
            "128": "icons\/logo.png"
        }
    },
    "commands": {
        "toggle_InstagramChatGPT": {
            "description": "Run ChatGPT on the current page.",
            "suggested_key": {
                "default": "Ctrl+B",
                "linux": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.google.com\/*"
            ],
            "js": [
                "js\/content-script.js",
                "js\/chunk-vendors.js"
            ],
            "css": [
                "css\/content-script.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "js": [
                "js\/chatgpt-script.js"
            ],
            "css": [],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "*:\/\/play.google.com\/*",
                "*:\/\/*.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "commands"
    ],
    "host_permissions": [
        "*:\/\/play.google.com\/*",
        "*:\/\/*.openai.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'"
    }
}