您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
changes a html object's id to whatever you want without inspect. works great with my button clicker
- // ==UserScript==
- // @name id changer
- // @namespace http://tampermonkey.net/
- // @version 0.1.2
- // @description changes a html object's id to whatever you want without inspect. works great with my button clicker
- // @author twarped
- // @match http*://*/*
- // @exclude sites.google.com/*/edit
- // @exclude docs.google.com/*/*
- // @grant none
- // ==/UserScript==
- var id = document. createElement("button");
- id.innerHTML='change id'
- var idbutton = document. getElementsByTagName("body")[0];
- idbutton. appendChild(id);
- id.addEventListener ("click",function idmaker(){
- var thing = prompt('id','');
- if(thing != null){
- var change = prompt('id ' +thing+ ' change to','')
- }
- document.getElementById(thing).id = change;
- });