AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
AI Noise-cancelling headphones là gì?
AI Noise-cancelling headphones là một tiện ích mở rộng Chrome được phát triển bởi Jacob Torrey - Thinkst Labs, và tính năng chính của nó là "An extension to filter out AI-generated noise from your browsing experience".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AI Noise-cancelling headphones
Tải xuống các tệp mở rộng AI Noise-cancelling headphones dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
URL Chính Thức | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
Mô tả | An extension to filter out AI-generated noise from your browsing experience |
Kích Thước Tệp | 65.57 KB |
Số Lần Cài Đặt | 345 |
Phiên Bản Hiện Tại | 0.3.1 |
Cập Nhật Lần Cuối | 2023-09-22 |
Ngày Phát Hành | 2023-08-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Jacob Torrey - Thinkst Labs |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/thinkst/zippy/tree/main/inch |
URL Trang Chính Sách Bảo Mật | https://canary.tools/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |