您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
更改 Netflix CC 字幕样式
当前为
// ==UserScript== // @name Netflix CC 字幕样式(描边) // @namespace http://tampermonkey.net/ // @version 0.9 // @description 更改 Netflix CC 字幕样式 // @author TGSAN // @match *://www.netflix.com/* // @icon https://www.google.cn/s2/favicons?sz=64&domain=netflix.com // @grant none // ==/UserScript== (function() { 'use strict'; let subtitleStyle = ` .player-timedtext span { color: rgba(255, 255, 255, 0.6) !important; opacity: 1 !important; font-weight: normal !important; font-family: 'GenSenRounded2 JP', 'GenSenRounded2 TW', 'GenSenRounded2 TC', Netflix Sans, Helvetica Nueue, Helvetica, Arial, sans-serif !important; text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 0px -2px 0px, rgb(0, 0, 0) 0px 2px 0px, rgb(0, 0, 0) -2px 0px 0px, rgb(0, 0, 0) 1.5px 1.5px 1px, rgb(0, 0, 0) -1.5px 1.5px 1px, rgb(0, 0, 0) -1.5px -1.5px 1px, rgb(0, 0, 0) 1.5px -1.5px 1px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px, rgb(0, 0, 0) 0 0 2px !important; } `; let applySubtitleStyle = document.createElement("style"); applySubtitleStyle.innerHTML = subtitleStyle; document.head.appendChild(applySubtitleStyle); })();