MoST Subtitles

Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…

MoST Subtitles क्या है?

MoST Subtitles Joel Sjögren द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…"।

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

screenshot

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

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

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

                        Unofficial chrome extension for showing more subtitles at viki.com.

The code is largely inspired by chrome-subtitles and subber, but more minimal and targeted toward use at viki.com. It is commented and open-source, too. More most-like.

In early versions, only Korean was supported, but it is now possible to view as many languages as you want! In the options page, simply add more blocks, for example `.most-de { bottom: -100px; height: 100px; }` for German subtitles just below the player.

Visit https://github.com/JoelSjogren/most to fork, contribute, report bugs and request features!                    

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

नाम MoST Subtitles MoST Subtitles
ID kjmhinhfpooeamgbjkcmjfdedlahnkhk
आधिकारिक URL https://chromewebstore.google.com/detail/most-subtitles/kjmhinhfpooeamgbjkcmjfdedlahnkhk
विवरण Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…
फ़ाइल का आकार 301 KB
स्थापना संख्या 703
वर्तमान संस्करण 0.8.6
अंतिम अपडेट 2024-02-05
प्रकाशन तिथि 2018-01-27
रेटिंग 3.20/5 कुल 5 रेटिंग्स
डेवलपर Joel Sjögren
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/JoelSjogren/most
सहायता पृष्ठ URL https://github.com/JoelSjogren/most/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MoST Subtitles",
    "version": "0.8.6",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "MoST Subtitles",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "options_load.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.viki.com\/*",
                "http:\/\/www.viki.com\/*",
                "https:\/\/subber.viki.com\/*",
                "http:\/\/subber.viki.com\/*"
            ],
            "js": [
                "zepto.js",
                "overlay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "options_default.css"
    ]
}