InspectGPT

Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.

什麼是InspectGPT?

InspectGPT是由https://inspectgpt.com開發的Chrome擴展程式,該擴展的主要功能是“Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.”。

擴展截圖

screenshot
screenshot

下載InspectGPT擴展crx文件

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

擴展使用說明

                        InspectGPT is a chrome extension that helps users identify content on a webpage that has been written by artificial intelligence. When a user runs InspectGPT extension, the app analyzes the paragraphs on a page in search of AI-written content. Once the app has identified any GPT-generated content, it can provide the user with information about where that content appears on the page. This app may be useful for people who want to understand the prevalence of AI-generated content on the web, or for those who are interested in analyzing the output of the GPT language model.                    

擴展基本資訊

名稱 InspectGPT InspectGPT
ID clppmiggpgjclcmgmmlfpcnpckphieik
官方網址 https://chromewebstore.google.com/detail/inspectgpt/clppmiggpgjclcmgmmlfpcnpckphieik
簡介 Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.
檔案大小 14.3 KB
安裝次數 38
目前版本 1.0
更新時間 2023-01-15
上架時間 2023-01-14
評分 5.00/5 共 1 次評分
開發者 https://inspectgpt.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://inspectgpt.com
說明頁面URL https://inspectgpt.com/support
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "InspectGPT",
    "description": "Our extension makes it simple to find GPT-generated text on any web page. Just install it and let it scan the page for you.",
    "version": "1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/inspectgpt.com\/*"
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "inspect-gpt.png",
        "48": "inspect-gpt.png",
        "128": "inspect-gpt.png"
    },
    "action": {
        "default_icon": "inspect-gpt.png",
        "default_popup": "popup.html",
        "default_title": "InspectGPT"
    }
}