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 là gì?

InspectGPT là một tiện ích mở rộng Chrome được phát triển bởi https://inspectgpt.com, và tính năng chính của nó là "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.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng InspectGPT

Tải xuống các tệp mở rộng InspectGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên InspectGPT InspectGPT
ID clppmiggpgjclcmgmmlfpcnpckphieik
URL Chính Thức https://chromewebstore.google.com/detail/inspectgpt/clppmiggpgjclcmgmmlfpcnpckphieik
Mô tả 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.
Kích Thước Tệp 14.3 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-01-15
Ngày Phát Hành 2023-01-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://inspectgpt.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://inspectgpt.com
URL Trang Trợ Giúp https://inspectgpt.com/support
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}