Greasy Fork is available in English.

🔥🔥🔥ChatGPT网页版安装即用(永久免费)🔥🔥🔥

ChatGPT网页版安装即用(永久免费)

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         🔥🔥🔥ChatGPT网页版安装即用(永久免费)🔥🔥🔥
// @version      0.13
// @description  ChatGPT网页版安装即用(永久免费)
// @author       clinch
// @license      MIT
// @match        *://wenku.baidu.com/*
// @match        *://wk.baidu.com/*
// @icon         https://www.baidu.com/favicon.ico
// @grant        unsafeWindow
// @run-at       document-start
// @namespace https://greasyfork.org/users/718868
// ==/UserScript==


// ==/useBootStrap==
//"https://www.bootcss.com/"
(function(){
    'use strict'
window.addEventListener('load', () => {
    addButton('下载跳转', selectReadFn)
    })
function addButton(text, onclick, cssObj) {
        cssObj = cssObj || {position: 'absolute', bottom: '50%', left:'2%', 'z-index': 3, width:'50px',position: 'fixed'}
        let button = document.createElement('button'), btnStyle = button.style
        document.body.appendChild(button)
        button.innerHTML = text
        button.onclick = onclick
        Object.keys(cssObj).forEach(key => btnStyle[key] = cssObj[key])
        return button
    }
function selectReadFn() {
     window.open("https://clinch123.gitee.io/checkhtml/?url="+location.href);
}
}())