finder copilot

finder copilot plugin for vsop platform

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         finder copilot
// @license MIT
// @namespace    http://tampermonkey.net/
// @version      2024-1-3
// @description  finder copilot plugin for vsop platform
// @author       finder
// @match        https://vsop-online.bytedance.net/ticket/list/detail/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @require    https://cdn.jsdelivr.net/npm/[email protected]/umd/react.production.min.js
// @require    https://cdn.jsdelivr.net/npm/[email protected]/umd/react-dom.production.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

     // const cssHref = 'https://lf3-static.bytednsdoc.com/obj/eden-cn/nneh7hbophrlpe/Finder/greasyFork/index3.css'
    //let cssScript = document.createElement('link');
    //cssScript.setAttribute('rel', 'stylesheet');
    //cssScript.setAttribute('type', 'text/css');
    //cssScript.href = cssHref;
    // document.documentElement.appendChild(cssScript);

    const jsSrc = 'https://dp-chat-assistant.gf.bytedance.net/script.js';
    let jsScript = document.createElement('script');
    jsScript.setAttribute('type', 'text/javascript');
    jsScript.src = jsSrc;

    document.documentElement.appendChild(jsScript);

})();