id changer

changes a html object's id to whatever you want without inspect. works great with my button clicker

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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;
});