环球资讯广播上下篇修复

将环球资讯广播中album-control替换为void以修复链接不显示问题

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         环球资讯广播上下篇修复
// @namespace    
// @version      0.1.1
// @description  将环球资讯广播中album-control替换为void以修复链接不显示问题
// @author       You
// @match        https://newsradio.cri.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=cri.cn
// @grant        none
// ==/UserScript==
// @include newsradio.cri.cn
// @license GNU GPLv3

(function() {
    'use strict';
    var Temp110 = document.getElementsByClassName("album-control");
    var Temp111 = document.getElementsByClassName("edui-upload-video");
    Temp110[0].className = "void";
    Temp111[0].className = "void";
    var Temp112 = document.getElementsByClassName("void");
    Temp112[0].src = Temp112[0].src.replace("http://huayuncpv.meldingcloud.com", "http://vcrires.cri.cn/01dcri");
    Temp112[0]._url = Temp112[0]._url.replace("http://huayuncpv.meldingcloud.com", "http://vcrires.cri.cn/01dcri");
    // Your code here...
})();