AI Noise-cancelling headphones

An extension to filter out AI-generated noise from your browsing experience

ما هو AI Noise-cancelling headphones؟

AI Noise-cancelling headphones هو إضافة Chrome تم تطويرها بواسطة Jacob Torrey - Thinkst Labs، والميزة الرئيسية لها هي "An extension to filter out AI-generated noise from your browsing experience".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة AI Noise-cancelling headphones

قم بتنزيل ملفات الامتداد AI Noise-cancelling headphones بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This is a proof-of-concept extension that uses the LZMA-based ZipPy (ported to Nim/JS) to set the transparency of each paragraph to the confidence that ZipPy has that the text is LLM-generated.                    

معلومات أساسية عن التمديد

الاسم AI Noise-cancelling headphones AI Noise-cancelling headphones
ID okghlbkbacncfnfcielbncabioedklcn
عنوان URL الرسمي https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn
الوصف An extension to filter out AI-generated noise from your browsing experience
حجم الملف 65.57 KB
عدد التثبيتات 345
النسخة الحالية 0.3.1
آخر تحديث 2023-09-22
تاريخ النشر 2023-08-29
تقييم 5.00/5 مجموع تقييمات 1
المطور Jacob Torrey - Thinkst Labs
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/thinkst/zippy/tree/main/inch
عنوان صفحة سياسة الخصوصية https://canary.tools/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.3.1",
    "name": "AI Noise-cancelling headphones",
    "author": "[email protected]",
    "description": "An extension to filter out AI-generated noise from your browsing experience",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "nch_small.png",
        "48": "nch_med.png",
        "128": "nch_large.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/nch.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/nch-worker.js"
    }
}