您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
It worked like this ages ago before vía cookies. No idea why they changed that.
// ==UserScript== // @name Rentry - Autofill Edit Code // @namespace http://tampermonkey.net/ // @version 2024-12-30 // @description It worked like this ages ago before vía cookies. No idea why they changed that. // @author Guess // @match https://rentry.org/*/edit // @match https://rentry.co/*/edit // @icon https://www.google.com/s2/favicons?sz=64&domain=rentry.org // @grant none // ==/UserScript== (function() { 'use strict'; // Plz specify your edit code here: const YOUR_EDIT_CODE = "Enter ur code here"; const editCodeInput = document.getElementById("id_edit_code"); editCodeInput.value = YOUR_EDIT_CODE; })();