Youtube Subtitle Navigation
To help to navigate the video via subtitles
Youtube Subtitle Navigation क्या है?
Youtube Subtitle Navigation 915522927 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "To help to navigate the video via subtitles"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Subtitle Navigation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
To show the youtube subtitles in a scroll view. And you can click the subtitle to navigate to any point of the video
एक्सटेंशन की मूल जानकारी
नाम | Youtube Subtitle Navigation |
ID | mnmncjbohjbmlcjfledohhdbjgmpdgmp |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-subtitle-navigati/mnmncjbohjbmlcjfledohhdbjgmpdgmp |
विवरण | To help to navigate the video via subtitles |
फ़ाइल का आकार | 950 KB |
स्थापना संख्या | 49 |
वर्तमान संस्करण | 0.0.0.2 |
अंतिम अपडेट | 2022-06-14 |
प्रकाशन तिथि | 2022-06-14 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | 915522927 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/qq915522927/youtube-subtiltle-scroller-plugin |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Subtitle Navigation", "version": "0.0.0.2", "description": "To help to navigate the video via subtitles", "icons": { "32": "icons\/logo32.png", "128": "icons\/logo128.png", "512": "icons\/logo512.png" }, "permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": ".\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ ".\/foreground.js" ] } ], "web_accessible_resources": [ { "resources": [ "bootstrap-icons.woff", "bootstrap-icons.woff2" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |