CCTV13-Pro

2022/3/12 15:36:33

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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);
    })
})();