// ==UserScript== // @name 哔哩哔哩字幕转str字幕 // @namespace http://tampermonkey.net/ // @description 哔哩哔哩字幕转str字幕,按F12 查看 console 结果 // @version 0.1 // @description try to take over the world! // @author Itsky71 // @match https://*.hdslb.com/*.json // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license AGPL License // @downloadURL none // ==/UserScript== (function() { 'use strict'; var xhr = new XMLHttpRequest(); xhr.open("get", window.location.href, true); xhr.responseType = "json"; xhr.onload = function() { var str = ''; var body = this.response.body; for(var i=0;i