CCTV13-Pro

2022/3/12 15:36:33

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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