BiliBili Bangumi CC Subtile Auto Translation And Improvement

BiliBili bangumi CC subtitle auto translation (CHT to CHS), make subtitle background transparent, improve font-style

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         BiliBili港台番剧CC字幕繁转简去黑边字体优化
// @name:en      BiliBili Bangumi CC Subtile Auto Translation And Improvement
// @name:zh-CN   BiliBili港台番剧CC字幕繁转简去黑边字体优化
// @description  哔哩哔哩B站番剧字幕自动翻译繁转简、去除字幕黑色边框、字体大小样式位置优化
// @description:en BiliBili bangumi CC subtitle auto translation (CHT to CHS), make subtitle background transparent, improve font-style
// @description:zh-CN  哔哩哔哩B站番剧字幕自动翻译繁转简、去除字幕黑色边框、字体样式优化
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @author       大猹狸子
// @match        *://www.bilibili.com/bangumi/play/*
// @icon         https://www.google.com/s2/favicons?domain=bilibili.com
// @require https://greasyfork.org/scripts/430412-chinese-conversion-api/code/Chinese%20Conversion%20API.js?version=957744
// @license MIT
// @run-at document-start
// @grant    GM_addStyle
//项目参考自Rurutie、Howard20181二位的代码
//源项目地址:https://greasyfork.org/zh-CN/scripts/428492
//源项目授权:license MIT
// ==/UserScript==
/* jshint esversion: 6 */
GM_addStyle(`
    .squirtle-subtitle-item-text{
    background: rgba(0, 0, 0, 0) !important;
    transform: scale(1.3);
    bottom: -0.5em;
    font-weight: bold;
    -webkit-text-stroke: 0.033em #000;
    font-family:"Microsoft YaHei","微软雅黑",Helvetica,Tahoma,Arial,STXihei,sans-serif;
    }
`);

const {tc2sc} = window.ChineseConversionAPI;

(function() {
    'use strict';
    const hKey_json_parse='rhlxuprkmayw'

    JSON.parse[hKey_json_parse]||!(() => {

        const $$parse=JSON.parse;
        JSON.parse=function(){
            if(typeof arguments[0]=='string' && arguments[0].length>16){
                if(/"(from|to|location)"\s*:\s*[\d\.]+/.test(arguments[0])){
                    arguments[0]= tc2sc(arguments[0])
                }
            }
            return $$parse.apply(this,arguments)
        }
        JSON.parse.toString=()=>$$parse.toString();
        JSON.parse[hKey_json_parse]=true


    })();



})();


(function $$() {
    'use strict';

if(!document||!document.documentElement) window.requestAnimationFrame($$)

function addStyle (styleText) {
  const styleNode = document.createElement('style');
  styleNode.type = 'text/css';
  styleNode.textContent = styleText;
  document.documentElement.appendChild(styleNode);
  return styleNode;
}

addStyle(`
.bilibili-player-video-subtitle .subtitle-item-text{
font-family: system-ui;
}
`)

})();