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
官方網址 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"
    }
}