YouTube subtitles viewer

An extension to view, copy and search subtitles on YouTube, with every language

YouTube subtitles viewer क्या है?

YouTube subtitles viewer Elia Scotto द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to view, copy and search subtitles on YouTube, with every language"।

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

screenshot
screenshot
screenshot

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

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

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

                        With this Chrome extension created for YouTube, you can view, copy and search subtitles for every video (if available).
Just open a video and click on the icon or press (Ctrl/Command+Shift+K) and the popup window will appear.
You could easily select the languages for the subtitles, select and copy all the text or navigate the video using the time links presented on the left.
The interface uses the new dark YouTube theme.

QUICK START:
1. Open a YouTube video
2. Click on the icon or use the shortcuts

Shortcuts:
Win: Ctrl+Shift+K
Mac: Command+Shift+K                    

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

नाम YouTube subtitles viewer YouTube subtitles viewer
ID ljblecifcbmcdjbabhimddlladlkfdfg
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-subtitles-viewer/ljblecifcbmcdjbabhimddlladlkfdfg
विवरण An extension to view, copy and search subtitles on YouTube, with every language
फ़ाइल का आकार 98.48 KB
स्थापना संख्या 3,534
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2020-09-22
प्रकाशन तिथि 2020-09-21
रेटिंग 4.40/5 कुल 10 रेटिंग्स
डेवलपर Elia Scotto
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/elias94/youtube-subtitles-viewer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An extension to view, copy and search subtitles on YouTube, with every language",
    "version": "1.1.0",
    "name": "YouTube subtitles viewer",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Youtube subtitles viewer"
    },
    "permissions": [
        "tabs",
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            }
        }
    },
    "web_accessible_resources": [
        "content.styles.css",
        "icon254.png",
        "icon128.png",
        "icon48.png",
        "icon16.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}