id changer

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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