AI Writing Check

Checks any text to see if it is human-written.

AI Writing Check là gì?

AI Writing Check là một tiện ích mở rộng Chrome được phát triển bởi flarez5858, và tính năng chính của nó là "Checks any text to see if it is human-written.".

Ả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 AI Writing Check

Tải xuống các tệp mở rộng AI Writing Check 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

                        Simple, fast tool for educators, teachers alike. See https://aiwritingcheck.org for notes. 
Supports: most websites with basic text, Word, Google Docs.                    

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

Tên AI Writing Check AI Writing Check
ID kbhhacnmeeljkelinngfddddmgnpfagc
URL Chính Thức https://chromewebstore.google.com/detail/ai-writing-check/kbhhacnmeeljkelinngfddddmgnpfagc
Mô tả Checks any text to see if it is human-written.
Kích Thước Tệp 398 KB
Số Lần Cài Đặt 115
Phiên Bản Hiện Tại 2.1.1
Cập Nhật Lần Cuối 2023-03-10
Ngày Phát Hành 2023-02-15
Nhà Phát Triển flarez5858
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://stratums.io/aiwritingcheck/main.html
URL Trang Chính Sách Bảo Mật https://ksw2-center.glitch.me/privacy.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AI Writing Check",
    "description": "Checks any text to see if it is human-written.",
    "version": "2.1.1",
    "icons": {
        "16": "logo\/icon16.png",
        "48": "logo\/icon48.png",
        "128": "logo\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "word-hooks.js"
            ],
            "matches": [
                "https:\/\/usc-word-edit.officeapps.live.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "query-pdf.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "commands": {
        "check-text": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1",
                "windows": "Ctrl+Shift+1",
                "chromeos": "Ctrl+Shift+1",
                "linux": "Ctrl+Shift+1"
            },
            "description": "Check text for AI writing."
        }
    }
}