ChatGPTx

Shortcut to ChatGPT to help you with your daily tasks

什麼是ChatGPTx?

ChatGPTx是由ph.becking開發的Chrome擴展程式,該擴展的主要功能是“Shortcut to ChatGPT to help you with your daily tasks”。

擴展截圖

screenshot
screenshot

下載ChatGPTx擴展crx文件

下載ChatGPTx擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Select something in your Chrome browser and use right-click to see the explanation of the selected phrase. Enjoy! 

Cheers, Jap and Piet

Note: This is still the Beta version. Any feedback would be highly appreciated and can be submitted via the following link: https://sites.google.com/view/chatgptx/                    

擴展基本資訊

名稱 ChatGPTx ChatGPTx
ID bcekompknmefbgdhaionajkpcehbhkbk
官方網址 https://chromewebstore.google.com/detail/chatgptx/bcekompknmefbgdhaionajkpcehbhkbk
簡介 Shortcut to ChatGPT to help you with your daily tasks
檔案大小 17.68 KB
安裝次數 372
目前版本 0.1.1
更新時間 2023-01-29
上架時間 2023-01-19
評分 5.00/5 共 1 次評分
開發者 ph.becking
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPTx",
    "version": "0.1.1",
    "icons": {
        "16": "assets\/ext-icon.png",
        "32": "assets\/ext-icon.png",
        "48": "assets\/ext-icon.png",
        "128": "assets\/ext-icon.png"
    },
    "description": "Shortcut to ChatGPT to help you with your daily tasks",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "ChatGPTx Extension",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}