CCTV13-Pro

2022/3/12 15:36:33

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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        CCTV13-Pro
// @namespace   Violentmonkey Scripts
// @icon        https://p1.img.cctvpic.com/photoAlbum/templet/common/DEPA1548732472557170/logonew190218.jpg
// @match       https://tv.cctv.com/live/cctv13/
// @require     https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.js
// @version     1.4
// @author      智尚智学
// @description 2022/3/12 15:36:33
// @license     MIT
// @note        1.4版本:新增加图标
// @note        1.3版本:修复全屏元素错误的Bug
// @note        1.2版本:初版
// @note        1.0和1.1测试版:两种方案不可行
// ==/UserScript==

(function() {
    'use strict';

    $(()=>{
        console.log("引入完成-jquery运作");
        setTimeout(() => {
            $("#player_pagefullscreen_player")[0].click();
        },3000);
    })
})();