Subtitle Hider

A simple addon that can hide hard subtitle

What is Subtitle Hider?

Subtitle Hider is a Chrome extension developed by KamiGim, and its main feature is "A simple addon that can hide hard subtitle".

Extension Screenshots

screenshot

Download Subtitle Hider Extension CRX File

Download Subtitle Hider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A simple addon that can hide hard subtitle                    

Extension Basic Information

Name Subtitle Hider Subtitle Hider
ID efcmkinkhmekabcnfnfepglblgbkifeg
Official URL https://chrome.google.com/webstore/detail/subtitle-hider/efcmkinkhmekabcnfnfepglblgbkifeg
Description A simple addon that can hide hard subtitle
File Size 136 KB
Installation Count 117
Current Version 0.1
Last Updated 2020-09-24
Publish Date 2020-09-24
Rating 4.00/5 Total 3 Ratings
Developer KamiGim
Email [email protected]
Payment Type free
Extension Website https://github.com/KamiGim/subtitle-hider
Supported Languages 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"
            ]
        }
    ]
}