NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Seguir Perfis no Instagram // @namespace http://tampermonkey.net/ // @version 0.1 // @description Ferramenta para seguir perfis automáticamente no instagram! // @author Ergildo C. Dias // @license MIT // @match https://www.instagram.com/* // @include https://www.instagram.com/* // @grant none // ==/UserScript== (function () { 'use strict'; setInterval(seguir, 1000); function seguir() { var claimBtn = document.getElementsByClassName('css-owsrz2'); var claimStatus = claimBtn.getAttribute('disabled') alert(claimStatus); } })();