Nouka
Naviagte through the youtube videos using enhanced caption search
Was ist Nouka?
Nouka ist eine Chrome-Erweiterung, die von mayankmacav entwickelt wurde, und ihr Hauptmerkmal ist "Naviagte through the youtube videos using enhanced caption search".
Erweiterungsscreenshots
Nouka-Erweiterungs-CRX-Datei herunterladen
Laden Sie Nouka-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Features : - Simple interface - Download navigable YouTube video captions in the extension - Search through YouTube Captions - Get notified when certain videos have no captions attached The Nouka extensions lets you easily download and navigate though YouTube video captions. You search "abra ca dabra" and the extension takes you to the point in the video where they say this word. It's that simple.
Grundlegende Informationen zur Erweiterung
Name | Nouka |
ID | mehngcjbljpifedjaddhjmgblkldogbe |
Offizielle URL | https://chromewebstore.google.com/detail/nouka/mehngcjbljpifedjaddhjmgblkldogbe |
Beschreibung | Naviagte through the youtube videos using enhanced caption search |
Dateigröße | 28.48 KB |
Installationsanzahl | 14 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2021-08-12 |
Veröffentlichungsdatum | 2021-01-13 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | mayankmacav |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Nouka", "version": "1.0.0", "description": "Naviagte through the youtube videos using enhanced caption search", "manifest_version": 2, "icons": { "16": "assets\/icon16_red.png", "32": "assets\/icon32_red.png", "48": "assets\/icon48_red.png", "64": "assets\/icon64_red.png" }, "page_action": { "default_icon": "assets\/icon16_red.png", "default_title": "Nouka", "default_popup": ".\/popup\/index.html" }, "content_scripts": [ { "js": [ "content\/checkDOM.js", "content\/getTranscript.js", "content\/messageReceiver.js" ], "matches": [ "https:\/\/www.youtube.com\/watch?*" ] } ], "background": { "scripts": [ "background\/setPageIcon.js", "background\/background.js", "background\/messageReceiver.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage", "tabs" ] } |