id changer

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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