// ==UserScript== // @name 有道云笔记自动登录 // @namespace https://note.youdao.com/ // @version 2024-03-04 // @description 有道云笔记自动登录 // @author FBI首席执行官 // @background // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant GM_xmlhttpRequest // @grant GM_log // @connect note.youdao.com // ==/UserScript== return new Promise((resolve, reject) => { GM_xmlhttpRequest({ method: 'GET', url: 'https://note.youdao.com/login/acc/pe/getsess?_launch=&cstk=undefined&_firstTime=&_deviceId=&product=YNOTE&_platform=web&_system=windows&_cityCode=&_systemVersion=&_cityName=&_screenWidth=1440&_product=YNote-Web&_screenHeight=960&_version=&_appName=ynote&sev=j1&_appuser=x&sec=v1&_vendor=official-website&keyfrom=web', onload: (xhr) => { GM_log(xhr); resolve(); } }) });