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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…"입니다.

확장 프로그램 스크린샷

screenshot

MoST Subtitles 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}