Online Subtitles

Watch your favorite movies and shows online with subtitles.

Online Subtitles란 무엇입니까?

Online Subtitles은(는) Ivan Oliinychenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch your favorite movies and shows online with subtitles."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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