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”。
扩展截图
下载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.                     扩展基本信息
| 名称 |   |  
| 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"
    }
}  |  |