AI Writing Check

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

什么是AI Writing Check?

AI Writing Check是由flarez5858开发的Chrome扩展程序,该扩展的主要功能是“Checks any text to see if it is human-written.”。

扩展截图

screenshot
screenshot

下载AI Writing Check扩展crx文件

下载AI Writing Check扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 AI Writing Check AI Writing Check
ID kbhhacnmeeljkelinngfddddmgnpfagc
官方URL https://chromewebstore.google.com/detail/ai-writing-check/kbhhacnmeeljkelinngfddddmgnpfagc
简介 Checks any text to see if it is human-written.
文件大小 398 KB
安装次数 115
当前版本 2.1.1
更新时间 2023-03-10
上架时间 2023-02-15
开发者 flarez5858
电子邮箱 [email protected]
付费类型 free
扩展官网 https://stratums.io/aiwritingcheck/main.html
隐私政策页面URL https://ksw2-center.glitch.me/privacy.txt
支持的语言 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."
        }
    }
}