記事一覧

tukatterのAutopagerize用SITEINFO

tukatter

tukatter

SITEINFO

{
    url:          '^http://tukatter\\.shillest\\.net/.*',
    nextLink:     '//div[contains(concat(" ", normalize-space(@class), " "), " pager ")]/strong/following-sibling::a',
    pageElement:  '//div[contains(concat(" ", normalize-space(@class), " "), " main ")]',
    exampleUrl:   'http://tukatter.shillest.net/',
}

Firefox + Greasemonkey でのSITEINFOの追加の仕方

  • [ツール]->[Greasemonkey]->[ユーザスクリプトの管理]
  • 左上の窓の"AutoPagerize"を選択->左下の"編集"(UTF-8対応のテキストエディタなら何でもOK)
  • 42行目あたりにある"var SITEINFO = ["以降を以下のように書き換える。

ファイル 56-1.png

var SITEINFO = [
    /* sample
    {
        url:          'http://(.*).google.+/(search).+',
        nextLink:     'id("navbar")//td[last()]/a',
        pageElement:  '//div[@id="res"]/div',
        exampleUrl:   'http://www.google.com/search?q=nsIObserver',
    },
    */
    /* template
    {
        url:          '',
        nextLink:     '',
        pageElement:  '',
        exampleUrl:   '',
    },
    */
    {
        url:          '^http://tukatter\\.shillest\\.net/.*',
        nextLink:     '//div[contains(concat(" ", normalize-space(@class), " "), " pager ")]/strong/following-sibling::a',
        pageElement:  '//div[contains(concat(" ", normalize-space(@class), " "), " main ")]',
        exampleUrl:   'http://tukatter.shillest.net/',
    }
];

ファイル 56-2.png

幸せ。

ファイル 56-3.png