Nouka

Naviagte through the youtube videos using enhanced caption search

O que é Nouka?

Nouka é uma extensão do Chrome desenvolvida por mayankmacav, e sua principal característica é "Naviagte through the youtube videos using enhanced caption search".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Nouka

Baixe arquivos de extensão Nouka no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Nouka Nouka
ID mehngcjbljpifedjaddhjmgblkldogbe
URL Oficial https://chromewebstore.google.com/detail/nouka/mehngcjbljpifedjaddhjmgblkldogbe
Descrição Naviagte through the youtube videos using enhanced caption search
Tamanho do Arquivo 28.48 KB
Contagem de Instalações 14
Versão Atual 1.0.0
Última Atualização 2021-08-12
Data de Publicação 2021-01-13
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor mayankmacav
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}