AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
Vad är AI Noise-cancelling headphones?
AI Noise-cancelling headphones är en Chrome-tillägg utvecklad av Jacob Torrey - Thinkst Labs, och dess huvudfunktion är "An extension to filter out AI-generated noise from your browsing experience".
Tilläggsskärmbilder
Ladda ner AI Noise-cancelling headphones-förlängningens CRX-fil
Ladda ner AI Noise-cancelling headphones-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | okghlbkbacncfnfcielbncabioedklcn |
| Officiell webbadress | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
| Beskrivning | An extension to filter out AI-generated noise from your browsing experience |
| Filstorlek | 65.57 KB |
| Antal Installationer | 345 |
| Aktuell Version | 0.3.1 |
| Senast Uppdaterad | 2023-09-22 |
| Publiceringsdatum | 2023-08-29 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Jacob Torrey - Thinkst Labs |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/thinkst/zippy/tree/main/inch |
| URL till Sekretesspolicy Sidan | https://canary.tools/privacy |
| Stödda Språk | 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"
}
} | |