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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы политики конфиденциальности 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"
    }
}