AI Noise-cancelling headphones

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

AI Noise-cancelling headphonesとは何ですか?

AI Noise-cancelling headphonesはJacob Torrey - Thinkst Labsによって開発されたChromeの拡張機能で、その主な機能は「An extension to filter out AI-generated noise from your browsing experience」です。

拡張機能のスクリーンショット

screenshot

AI Noise-cancelling headphones拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}