YouTube Captions Search

It's like 'ctrl + f' (or 'cmd + f'), but for YouTube

YouTube Captions Search क्या है?

YouTube Captions Search brennanmho द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It's like 'ctrl + f' (or 'cmd + f'), but for YouTube"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Captions Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        HOW TO USE:

1. Go to any YouTube video that contains captions/subtitles (CC button available).
2. If the extension icon is grayed out, click on the CC button.
3. Click the extension icon to begin searching!

*** REFRESH ALREADY OPEN YOUTUBE PAGES UPON INSTALLATION IF EXTENSION IS NOT ACTIVATING ***

If you found this extension useful, please consider a small donation :).

https://www.paypal.com/paypalme/brennanho                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Captions Search YouTube Captions Search
ID kimbeggjgnmckoikpckibeoaocafcpbg
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg
विवरण It's like 'ctrl + f' (or 'cmd + f'), but for YouTube
फ़ाइल का आकार 23.58 KB
स्थापना संख्या 6,000
वर्तमान संस्करण 2.1.9
अंतिम अपडेट 2020-12-15
प्रकाशन तिथि 2020-06-07
रेटिंग 4.34/5 कुल 35 रेटिंग्स
डेवलपर brennanmho
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Captions Search",
    "short_name": "YCS",
    "description": "It's like 'ctrl + f' (or 'cmd + f'), but for YouTube",
    "version": "2.1.9",
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "https:\/\/www.youtube.com\/api\/timedtext?*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true,
        "run_at": "document_start"
    },
    "browser_action": {
        "default_icon": "images\/video-player.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/youtube-16.png",
        "32": "images\/youtube-32.png",
        "48": "images\/youtube-48.png",
        "128": "images\/youtube-128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+I",
                "chromeos": "Ctrl+Shift+Y",
                "linux": "Ctrl+Shift+Y"
            }
        }
    },
    "web_accessible_resources": [
        "style.css"
    ]
}