vtkkMutiSub

a chrome extension allow you to add secondary subtitle on KKTV.

Qu'est-ce que vtkkMutiSub ?

vtkkMutiSub est une extension Chrome développée par king4sam990816, et sa fonction principale est "a chrome extension allow you to add secondary subtitle on KKTV.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension vtkkMutiSub

Téléchargez les fichiers d'extension vtkkMutiSub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        a chrome extension allow you to add secondary subtitle on KKTV. 
KKTV 雙字幕擴充功能

特色
- 整合 kktv 原生選單
- 使用 kktv 所提供之字幕(但我只有看到有日語的)

使用方法
安裝擴充功能後播放影片,靜待幾秒後等字幕下載完畢後就可以點選字幕選單

source code 
https://github.com/king4sam/vtkkMutiSub                    

Informations de Base sur l'Extension

Nom vtkkMutiSub vtkkMutiSub
ID flnfnhglpndakhaiipkidmokjhnegjig
URL Officiel https://chromewebstore.google.com/detail/vtkkmutisub/flnfnhglpndakhaiipkidmokjhnegjig
Description a chrome extension allow you to add secondary subtitle on KKTV.
Taille du Fichier 45.9 KB
Nombre d'Installations 607
Version Actuelle 1.2.1
Dernière Mise à Jour 2019-04-17
Date de Publication 2019-04-17
Évaluation 5.00/5 Total 2 Évaluations
Développeur king4sam990816
Email [email protected]
Type de Paiement free
Langues Prises en Charge en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "vtkkMutiSub",
    "description": "a chrome extension allow you to add secondary subtitle on KKTV.",
    "version": "1.2.1",
    "default_locale": "zh_TW",
    "minimum_chrome_version": "49",
    "icons": {
        "16": "icons\/kk16.png",
        "32": "icons\/kk32.png",
        "48": "icons\/kk48.png",
        "128": "icons\/kk128.png"
    },
    "page_action": {
        "default_popup": "popups\/default.html",
        "default_icon": {
            "16": "icons\/kk16.png",
            "32": "icons\/kk32.png",
            "48": "icons\/kk48.png",
            "128": "icons\/kk128.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.kktv.me\/*",
        "declarativeContent",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.kktv.me\/*"
            ],
            "js": [
                "build\/inject.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.kktv.me\/*"
            ],
            "js": [
                "build\/contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}