SEO a link building

SEO bookmarklety

Záložky do prohlížeče s chytrými zkratkami pro různé SEO scénáře.

E-mail grabber

Na právě otevřené URL najde e-mail, uloží jej do paměti a ukáže v dialogovém okně potvrzení. Pokud na URL není žádná e-mailová adresa, neudělá nic.

javascript:(function(){var emails=[];var regex=/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi;document.body.innerHTML.match(regex).forEach(function(email){if(emails.indexOf(email)===-1)emails.push(email);});var textArea=document.createElement("textarea");textArea.value=emails.join("; ");document.body.appendChild(textArea);textArea.select();document.execCommand('copy');document.body.removeChild(textArea);alert('E-mailové adresy byly zkopírovány do schránky: '+textArea.value);})();

Google's SERP title a URL extrakce

Ze stránky s výsledky hledání na Google stáhne titulky stránek a jejcih URL, spočítá i počet znaků v titulku. Vše uloží do paměti, pak můžete vložit do vlastní tabulky.

javascript:(function() {    var results = document.querySelectorAll('h3');    var headers = 'Meta Title\tURL\tPočet znaků';    var data = Array.from(results).map(function(result) {        var text = result.textContent || result.innerText;        var link = result.closest('a') ? result.closest(%27a%27).href : %27No link found%27;        if (text !== %27Další výsledky%27 && text !== %27Opakovat%27) {            var length = text.length;            return text + %27\t%27 + link + %27\t%27 + length;        }        return null;    }).filter(function(item) { return item != null; });    data.unshift(headers);    var finalData = data.join(%27\n%27);    var textArea = document.createElement(%27textarea%27);    textArea.style.position = %27fixed%27;    textArea.style.opacity = %270%27;    textArea.value = finalData;    document.body.appendChild(textArea);    textArea.select();    document.execCommand(%27copy%27);    document.body.removeChild(textArea);    alert(%27Data s nadpisy sloupců byla zkopírována do schránky.%27);})();

Ahrefs: broken backlinks “dofollow”

Pro URL, kde právě jste, otevře Ahrefs a ukáže rozbité odkazy bez nofollow atributu.

javascript:(function(){  var base_url = 'https://app.ahrefs.com/v2-site-explorer/broken-backlinks?anchorRules=&bestFilter=all&domainNameRules=&followType=dofollow&grouping=one-per-domain&limit=50&mode=subdomains&offset=0&refPageAuthorRules=&refPageTitleRules=&refPageUrlRules=&sort=traffic&sortDirection=desc&surroundingRules=&target=%27;  var current_site = window.location.hostname;  window.open(base_url + current_site + %27&targetUrlRules=%27, %27_blank%27);})();

Ahrefs: Nové odkazy za 30 dnů (bez spamu)

Pro doménu, kde právě jste, otevře Ahrefs a ukáže nové odkazy bez spamu podle mých filtrů.

javascript:location.href='https://app.ahrefs.com/v2-site-explorer/refdomains/subdomains?contentType=html&followType=dofollow&highlightChanges=30d&history=new&limit=50&offset=0&sort=dr&sortDirection=desc&target=%27+encodeURIComponent(location.hostname + location.pathname)

Seznam URL z Wayback Archive jako TXT

Spusťe na webu, z něhož chcete získat seznam všech URL z Wayback Archive. Pozor, u extra velkých webů nemusí dobře fungovat.

javascript:(function(){var domain=window.location.hostname;var newURL="https://web.archive.org/cdx/search/csx?url="+encodeURIComponent(domain)+"*&output=txt";window.open(newURL,%27_blank%27);})();
SEO a link building