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

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

확장 프로그램 사용 설명서

                        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."
        }
    }
}