您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); } }())