Nouka

Naviagte through the youtube videos using enhanced caption search

什麼是Nouka?

Nouka是由mayankmacav開發的Chrome擴展程式,該擴展的主要功能是“Naviagte through the youtube videos using enhanced caption search”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Nouka擴展crx文件

下載Nouka擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Nouka Nouka
ID mehngcjbljpifedjaddhjmgblkldogbe
官方網址 https://chromewebstore.google.com/detail/nouka/mehngcjbljpifedjaddhjmgblkldogbe
簡介 Naviagte through the youtube videos using enhanced caption search
檔案大小 28.48 KB
安裝次數 14
目前版本 1.0.0
更新時間 2021-08-12
上架時間 2021-01-13
評分 5.00/5 共 2 次評分
開發者 mayankmacav
電子郵箱 mayankmacav@gmail.com
付費類型 free
支援的語言 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"
    ]
}