您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This autofills the API key for you everytime you open https://oran.pw/baldrstargets/ . Just make sure to fill the API Key in the script.
// ==UserScript== // @name Auto Fill API Key - Baldr's Levelling List [site by oraN] - Torn // @namespace https://github.com/AmeLooksSus // @match *://*oran.pw/baldrstargets/ // @grant none // @version 1.0 // @author AmeLooksSus // @description This autofills the API key for you everytime you open https://oran.pw/baldrstargets/ . Just make sure to fill the API Key in the script. // @license MIT // ==/UserScript== (function() { 'use strict'; //Fill your API key here. var apiKey = 'YOUR_API_KEY'; function fillApiKey() { var apiKeyInput = document.getElementById('api-key'); if (apiKeyInput) { apiKeyInput.value = apiKey; } } window.addEventListener('load', fillApiKey); })();