Subtitle Hider

A simple addon that can hide hard subtitle

什么是Subtitle Hider?

Subtitle Hider是由KamiGim开发的Chrome扩展程序,该扩展的主要功能是“A simple addon that can hide hard subtitle”。

扩展截图

screenshot

下载Subtitle Hider扩展crx文件

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

扩展使用说明

                        A simple addon that can hide hard subtitle                    

扩展基本信息

名称 Subtitle Hider Subtitle Hider
ID efcmkinkhmekabcnfnfepglblgbkifeg
官方URL https://chrome.google.com/webstore/detail/subtitle-hider/efcmkinkhmekabcnfnfepglblgbkifeg
简介 A simple addon that can hide hard subtitle
文件大小 136 KB
安装次数 117
当前版本 0.1
更新时间 2020-09-24
上架时间 2020-09-24
评分 4.00/5 共3次评分
开发者 KamiGim
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/KamiGim/subtitle-hider
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Subtitle Hider",
    "version": "0.1",
    "description": "A simple addon that can hide hard subtitle",
    "permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "64": "icon\/icon64.png"
    },
    "browser_action": {
        "default_icon": "icon\/icon.png",
        "default_title": "Toggle subtitle hider"
    },
    "background": {
        "scripts": [
            "bg\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libs\/jquery.min.js",
                "libs\/jquery-ui.min.js",
                "content\/content.js"
            ],
            "css": [
                "libs\/jquery-ui.min.css",
                "css\/root.css"
            ]
        }
    ]
}