LoginSignup
5
4

More than 5 years have passed since last update.

SEO用ブックマークレット

Last updated at Posted at 2015-10-06

ちょこっとページのSEO要素をチェックしたいときにalertで出力

表示する内容

  • title
  • keyword
  • robots
  • description
  • canonical
  • h1-h6

コード

javascript:(function(f,s){s=document.createElement("script");s.src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js";s.onload=function(){f(jQuery.noConflict(true))};document.body.appendChild(s)})(function($){toc='';$("h1,h2,h3,h4,h5,h6").each(function(i){c=$(this);sp=c.prop("tagName").slice(1);if(sp>1){for(n=0;n<(sp-1)*2;n++){toc+=" ";}}toc+=c.prop("tagName")+':'+c.text()+'\n';});alert("canonical:\n"+$('link[rel=canonical]').attr('href')+"\n\n"+"title:\n"+$('title').text()+'\n\n'+"description:\n"+$('meta[name=description]').attr('content')+'\n\n'+"keywords:\n"+$('meta[name=keywords]').attr('content')+'\n\n'+"robots:\n"+$('meta[name=robots]').attr('content')+'\n\n'+toc);})
5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4