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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
}
} | |