Online Subtitles

Watch your favorite movies and shows online with subtitles.

Online Subtitles क्या है?

Online Subtitles Ivan Oliinychenko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch your favorite movies and shows online with subtitles."।

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

screenshot
screenshot
screenshot

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

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

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

                        Watch your favorite movies and shows online with subtitles. Automatically finds video on web pages and adds functionality to upload subtitles (.srt, charset utf-8). Includes many options, such as subtitle color, position and time adjustment. Works only with html5 video.
Graphic design by Tetyana Starchenko.

Github: https://github.com/ioliynichenko/Online-Subtitles

ver 0.1.7:
 - select a subtitle encoding
 - shortcut (g, h) for decrease and increase the time of the subtitles (ty Leo Caseiro)
 - small css and js fixes

ver 0.1.8:
 - updated to manifest v3
 - added support dragging subtitels across the screen                    

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

नाम Online Subtitles Online Subtitles
ID ggdggkhbmmgnogbcciencemciapnpeij
आधिकारिक URL https://chromewebstore.google.com/detail/online-subtitles/ggdggkhbmmgnogbcciencemciapnpeij
विवरण Watch your favorite movies and shows online with subtitles.
फ़ाइल का आकार 44.72 KB
स्थापना संख्या 8,078
वर्तमान संस्करण 0.1.8
अंतिम अपडेट 2023-04-05
प्रकाशन तिथि 2016-09-10
रेटिंग 3.13/5 कुल 30 रेटिंग्स
डेवलपर Ivan Oliinychenko
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ioliynichenko/Online-Subtitles
सहायता पृष्ठ URL https://github.com/ioliynichenko/Online-Subtitles
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Online Subtitles",
    "short_name": "OnlineSub",
    "description": "Watch your favorite movies and shows online with subtitles.",
    "version": "0.1.8",
    "author": "Ivan Oliinychenko",
    "action": {
        "default_icon": {
            "16": "icon.png",
            "24": "icon.png",
            "32": "icon.png"
        },
        "default_popup": "onlineSub.html"
    },
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/settings.svg",
                "images\/upload.svg",
                "icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "onlineSubBackground.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "onlineSubcontent.js"
            ],
            "css": [
                "onlineSub.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "background",
        "scripting"
    ],
    "host_permissions": [
        ""
    ]
}