Video Captions

Video Captions

Video Captions क्या है?

Video Captions codeacwars द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Video Captions"।

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

screenshot

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

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

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

                        As we all know, Youtube supports extended subtitles. Both the creator of the video and our ordinary viewers can create and add subtitles to the video (requires the creator's permission), so this allows many popular videos to have multilingual subtitles. Video Captions is an extension that allows the Video player to display subtitles in two languages at the same time. This plugin is very convenient for many users who like to watch videos on YouTube! Just like many American dramas where subtitles have suppressed subtitles, display double subtitles directly in your favorite videos.

######## Supported Websites ########

* YouTube


########## Bugs ##########

Please DON'T report bugs by a review, Through HERE:
- [email protected]                    

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

नाम Video Captions Video Captions
ID acdlhldnonjkjomgdieacckbdcmjbpdo
आधिकारिक URL https://chromewebstore.google.com/detail/video-captions/acdlhldnonjkjomgdieacckbdcmjbpdo
विवरण Video Captions
फ़ाइल का आकार 12.03 KB
स्थापना संख्या 149
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2020-10-12
प्रकाशन तिथि 2020-10-05
डेवलपर codeacwars
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Captions",
    "manifest_version": 2,
    "version": "0.0.3",
    "description": "Video Captions",
    "author": "ACWars",
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "images\/tab-icon.png"
    },
    "browser_action": {
        "default_title": "Video captions"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/youtube\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/youtube\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/youtube\/injected.js",
        "js\/youtube\/xhook.min.js"
    ]
}