count up css selector

  • /*
     * @title count up css selector
     * @description count up css selector
     * @include http://*
     * @license MIT License
     */
    
    (function(each) {
      each.call(document.styleSheets, function(s){
        var t = 0;
        each.call(s.rules, function(r) {
          t += r.selectorText.split(',').length;
        });
        console.log(t, s.rules.length, s.href || 'inline');
      });
    }(Array.prototype.forEach));
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/06/26 17:26:54 - 2012-06-26