TextCloaker

An extension to make your AI-written text undetectable by AI detectors, in development as of 05/05/23!

TextCloakerคืออะไร?

TextCloaker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย grahamzemel และคุณลักษณะหลักของมันคือ "An extension to make your AI-written text undetectable by AI detectors, in development as of 05/05/23!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TextCloaker

ดาวน์โหลดไฟล์ส่วนขยาย TextCloaker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension obfuscates normal text to prevent AI from detecting it as AI-written text. The instructions for use are as follows:

1. Open a Google Doc containing text (you must have edit access). 
2. Click on the TextCloaker icon in your extensions menu. 
3. Click 'Authorize' to allow TextCloaker to modify your document.
4. Click 'Obfuscate' to run TextCloaker and cloak any AI-written content!

Note: The document should not look any different after you obfuscate it. While unlikely, there may be formatting issues and unintended line breaks. You may need to make manual edits in these cases if the issue has not been patched.

Credit(s): 
jordanbkatz on Github (https://github.com/jordanbkatz) - initial concept                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TextCloaker TextCloaker
ID mehhokpcklihfcedcfhfcimcinjhakeh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/textcloaker/mehhokpcklihfcedcfhfcimcinjhakeh
คำอธิบาย An extension to make your AI-written text undetectable by AI detectors, in development as of 05/05/23!
ขนาดไฟล์ 43.34 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2023-05-08
วันที่เผยแพร่ 2023-05-08
ผู้พัฒนา grahamzemel
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://grahamzemel.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TextCloaker",
    "short_name": "TextCloaker - The Anti-AI Detector",
    "version": "1.1.3",
    "permissions": [
        "activeTab"
    ],
    "author": "Graham Zemel",
    "description": "An extension to make your AI-written text undetectable by AI detectors, in development as of 05\/05\/23!",
    "icons": {
        "128": "image.png"
    },
    "oauth2": {
        "client_id": "487272841760-8uqoilr6b3qemqdrmae7jeo77edba0a9.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "action": {
        "default_title": "TextCloaker",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "*docs.*",
                "*google.*",
                "*document*"
            ],
            "exclude_globs": [
                "*home*"
            ],
            "js": [
                "jquery-2.2.2.min.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "*docs.*",
                "*google.*",
                "*document*"
            ],
            "exclude_globs": [
                "*home*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "obfuscator.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "jquery-2.2.2.min.js",
                "obfuscator.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": [
                "*"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    }
}