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
官方網址 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"
            ]
        }
    ]
}