Subtitle Downloader

Utility that helps download subtitles from different websites.

什么是Subtitle Downloader?

Subtitle Downloader是由clarapastore17开发的Chrome扩展程序,该扩展的主要功能是“Utility that helps download subtitles from different websites.”。

扩展截图

screenshot

下载Subtitle Downloader扩展crx文件

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

扩展使用说明

                        This is an extension that allows users to download subtitles for Youtube, Netflix and NPOstart. This is useful for language learners, because they will be able to look up words and sentences from videos they are watching in order to increase their understanding of a foreign language.                    

扩展基本信息

名称 Subtitle Downloader Subtitle Downloader
ID dikakjhieldejcmfhicajkjcoapahmao
官方URL https://chromewebstore.google.com/detail/subtitle-downloader/dikakjhieldejcmfhicajkjcoapahmao
简介 Utility that helps download subtitles from different websites.
文件大小 43.4 KB
安装次数 3,328
当前版本 0.1.0
更新时间 2023-01-18
上架时间 2023-01-17
评分 3.50/5 共4次评分
开发者 clarapastore17
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Subtitle Downloader",
    "version": "0.1.0",
    "description": "Utility that helps download subtitles from different websites.",
    "manifest_version": 3,
    "author": "Language Dojo",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Subtitle Downloader"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "content_scripts": [
        {
            "js": [
                "netflix\/contentscript.js",
                "netflix\/inject.js"
            ],
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "js": [
                "youtube\/contentscript.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "js": [
                "npo\/contentscript.js",
                "npo\/inject.js"
            ],
            "matches": [
                "https:\/\/*.npostart.nl\/*"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "netflix\/worker.js"
            ],
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ]
        },
        {
            "resources": [
                "youtube\/worker.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "npo\/worker.js"
            ],
            "matches": [
                "https:\/\/*.npostart.nl\/*"
            ]
        }
    ]
}