AI Writing Check

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

AI Writing Check क्या है?

AI Writing Check flarez5858 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Checks any text to see if it is human-written."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AI Writing Check एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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."
        }
    }
}