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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
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"
    ]
}