og:image 取得

    @@ -3,9 +3,15 @@ * @description * @include http://* * @license MIT License - * @require jQuery + * @javascript_url */ -(function($){ - window.prompt('og:image', $('[property=og:image]').attr('content')); -})(jQuery); +(function(){ + var l = document.getElementsByTagName('meta'); + for(var i = 0;i < l.length;i++){ + if(l[i].getAttribute('property') === 'og:image'){ + window.prompt('og:image', l[i].getAttribute('content')); + break; + } + } +})();
  • /*
     * @title og:image 取得
     * @description
     * @include http://*
     * @license MIT License
     * @javascript_url
     */
    
    (function(){
    	var l = document.getElementsByTagName('meta');
    	for(var i = 0;i < l.length;i++){
    		if(l[i].getAttribute('property') === 'og:image'){
    			window.prompt('og:image', l[i].getAttribute('content'));
    			break;
    		}
    	}
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2016/01/28 20:16:43 - 2016-01-28
  2. 2016/01/28 19:09:43 - 2016-01-28
  3. 2016/01/28 19:05:18 - 2016-01-28
  4. 2016/01/28 19:04:32 - 2016-01-28