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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}