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文件

下载Online Subtitles扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
        ""
    ]
}