finder copilot

finder copilot plugin for vsop platform

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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

})();