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

Nouka 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
이메일 [email protected]
결제 유형 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"
    ]
}