Nouka

Naviagte through the youtube videos using enhanced caption search

ما هو Nouka؟

Nouka هو إضافة Chrome تم تطويرها بواسطة mayankmacav، والميزة الرئيسية لها هي "Naviagte through the youtube videos using enhanced caption search".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Nouka

قم بتنزيل ملفات الامتداد Nouka بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}