pageElement | id('content')//div[@class='blogbody']/div[@class='text'] |
---|---|
title | //div[@id='container']/div[@id='banner']/h1 |
waitSecondInHeadless | |
subtitle | id('content')//div[@class='blogbody']/h3[@class='title'] |
nextButton | |
forceClickButton | |
firstPageLink | |
firstPageButton | |
memo | |
isNeedHeadless | |
nextLink | //div[@id='container']/div[@id='content']/div[@class='navi']/a[last()] |
url | ^https?://[^.]+\.sblo\.jp/article/\d+\.html |
tag | |
author | |
injectStyle | |
exampleUrl | http://mokotyama.sblo.jp/article/190069313.html |
Database: ことせかいWebページ読み込み用情報
ことせかい という読み上げアプリで利用するデータです。
Webで読める小説を取り込むために、文書の場所や次のページへのlinkなどをさすxpathを記述します。
幾つかの項目はAutopagerizeとほぼ同じ意味です。
ことせかい については以下のURLを参照してください。
http://limura.github.io/NovelSpeaker/
以下、個々の属性についての概ねの方針を書いておきます。
url
対象のURLしてヒットする正規表現を書きます。
pageElement
読み上げ対象となる文字列が含まれるエレメントを取り出すxpathを書きます。複数hitするようなxpathを書いた場合、その全てが取り出されます。
nextLink
次のページに続く場合のaタグを指定するxpathを書きます。複数hitするものを書いた場合、最初のエレメントだけが採用されます。
Autopagerize側では必須属性になっていますが、こちらでは必須ではありません。つまり、Autopagerizeは(その目的から)1ページに全てが入っているサイトは登録されていませんので、そのようなサイトはこちらに登録する必要があります。また、Autopagerize側で主題が違う記事へのnextLinkが指定されているものについて、こちら側のデータベースにnextLinkが無い状態で登録することによって、主題が違う記事を読み込まないようにする事もできなくもありません。
title
本棚に登録される時の名前として採用される文字列を含むエレメントを取り出すためのxpathを書きます。
subtitle
(2017/12/18: 将来的に利用するための項目です)小説の個々の章にあたるサブタイトルを抽出できるエレメントを取り出すためのxpathを書きます。
author
作者名として採用される文字列を含むエレメントを指定するxpathを書きます。
firstPageLink
小説のタイトルページ(本文は含まない)がある場合、そのタイトルページから本文のページに遷移するためのaタグを指定します。複数hitするものを書いた場合、最初のエレメントだけが採用されます。
注意:firstPageLink にヒットした場合、そのURLを読み直して評価をし直すため、無限に firstPageLink の読み込み先を読んで場合があります。そのようにならないように firstPageLink の xpath を指定してください。
tag
その小説等に関する文字列タグが列挙されているエレメントがある場合は指定します。将来的に小説の検索などに使われるタグとして利用されるつもりのものになります。幾つかターゲットを書いてみたところ、どうやら Aレコード でタグへのlinkになっているものが多いようで、その場合は内部にスペースがあるタグなども見受けられましたため、Aレコードのようなエレメント毎に一つのタグとして取り込めないかな?と思っています。ということでできればAレコードそのものを取り出すように(a/text() のような XPath を書いてテキストだけにしないように)して頂ければ幸いです。
isNeedHeadless
JavaScriptが動作した後に本文部分(pageElement)が生成される場合には何らかの値("true"が推奨)を入れます。"false" や "False", "nil", "0", ""(何も入れない) の場合には単にGETリクエストで取得された値について評価して良いという意味になります。
nextButton
isNeedHeadless が有効になっている場合、ここで指定される要素の最初の物を次へのリンクとみなして .click() が実行されます。なお、この要素については xpath ではなく CSS selector で表記します(できればxpathにしたいのですが……)。なお、nextLink よりも nextButton の方が先に評価されます(nextButton と nextLink が両方共に存在する場合は nextButton が優先されます)。
firstPageButton
isNeedHeadless が有効になっている場合、ここで指定される要素の最初の物を最初の本文へのリンクとみなして .click() が実行されます。なお、この要素については xpath ではなく CSS selector で表記します(できればxpathにしたいのですが……)。なお、firstPageLink よりも firstPageButton の方が先に評価されます(firstPageButton と firstPageLink が両方共に存在する場合は firstPageButton が優先されます)。
forceClickButton
(実験的機能なので将来的に変更される可能性があります)isNeedHeadless が有効になっている場合、ここで指定される要素が存在した場合はその要素に対して .click() が実行された後、改めて内容を評価し直します。特定のボタンを押さないと先に進めない場合などに利用します。
waitSecondInHeadless
isNeedHeadless が有効になっている場合、ページが読み込まれたと思われる後、さらにここで指定される数値で指定される秒数待った後にinnerHTMLを評価します。
injectStyle
pageElement で取り出した後のHTMLに対して強制的に適用するstyleを記述します。これは、pageElementで取り出した後のHTMLにはstyleが適用されない(パスが違うのでstyleが適用されないであるとか、pageElementで取り出されたHTMLにはstyleが無いであるとか、styleは別のファイルになっているのでGETリクエスト一回では取り出せないであるといったときに、white-space:pre-wrap; で指定されるようなコンテンツが入っているとHTMLからStringに変換した時に改行周りとかが省略されてしまって悲しいことになるという問題を回避するための物になります。(例えば、pageElement として <div class="content xxx yyy">...</div> が取り出されるのがわかっている場合、"div.content{white-space:pre-wrap;}" といったような値を指定する事を期待しています。
exampleUrl
対象のURLを書きます。後で動作確認などをする時に利用します。複数書く場合は半角スペースで区切ってください。
memo
何らかのメモ書きを残すべきと思った場合は書いておいてください。日本語でOKです。
また、次のページや最初のページを判定するための要素がいくつかあるのでそれらの優先順位を別途書き記しておきます。
優先される順序は
1. forceClickButton
2. nextButton
3. firstPageButton
4. nextLink
5. firstPageLink
の順(数字が若い方が優先)になります。
なお、ことせかい の動作としては、このデータベースとAutopagerizeのデータベースの両方を使ってデータを読み込むように作られています。
動作としては対象のURLについて、まずこちらのデータベースにあるものが優先され、こちらのデータベースに載っていないURLのものについてはAutopagerizeのデータベースを参照することになります。
ですので、Autopagerize側で定義されている情報で十分なものの場合は改めてこちら側のデータベースに登録する必要は無いかもしれません。
Last Update: 2023-01-24T15:05:46+09:00 History
Item List
-
さくらのブログ 2023-01-13T20:41:23+09:00
last update: 2023-01-13T20:41:23+09:00
-
新都杜 2023-01-02T17:45:26+09:00
pageElement //div[@id='main']/div[@class='text'] title //h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink //table[@class='story']//a[contains(@href,'story=1')] firstPageButton memo isNeedHeadless nextLink //table[@class='prev-top-next']//a[@class='next' and contains(@href,'story=')] url ^https://neetsha\.jp/inside/comic\.php\? tag author //form[@action='/inside/comment.php']//a[contains(@href,'/inside/main.php?author=')] injectStyle exampleUrl https://neetsha.jp/inside/comic.php?id=24316&story=3 last update: 2023-01-02T17:45:26+09:00
-
Enty 2023-01-02T17:09:14+09:00
title //a[child::i[contains(@class,'fa-user')]]/span[@property='name']|//a[contains(@onclick,'entertainerClick')]/div/span pageElement //article subtitle //h4[@class='article-post-title'] memo 支援者にならないとマトモに使えないので支援しないで見える範囲でしか設定していません。支援してる人が書き直すべきだと考えられます。 isNeedHeadless true nextLink //a[contains(@href,'/posts/') and contains(@class,'post-nav') and contains(@onclick,'postNextPostClick')] url ^https://enty\.jp/posts/\d+ exampleUrl https://enty.jp/posts/142002 author //a[child::i[contains(@class,'fa-user')]]/span[@property='name']|//a[contains(@onclick,'entertainerClick')]/div/span last update: 2023-01-02T17:18:56+09:00
-
青空文庫/日本国憲法 2023-01-02T16:39:59+09:00
pageElement //body title //title waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo このページは //body で取らないと何も取れないぽいので特別視して専用のフィールドを作ります isNeedHeadless nextLink url ^https://www\.aozora\.gr\.jp/cards/001528/files/474.html$ tag author injectStyle exampleUrl https://www.aozora.gr.jp/cards/001528/files/474.html last update: 2023-01-02T16:39:59+09:00
-
MAGIC The Gathering JP / READING 2022-12-21T08:26:15+09:00
pageElement //div[@class='detail'] title //header//div[@class='column-title']/h1 waitSecondInHeadless subtitle //header[@class='article-title']//h1 nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink //div[@class='next-prev']//li[contains(@class,'btn-next')]/a[contains(@href,'/reading/')] url ^https://mtg-jp\.com/reading/[^/]+/\d+/ tag //article//section[@class='sec-article']/div[@class='tag-list']//a[contains(@href,'tag=')] author //article//section[@class='sec-article']//div[@class='name'] injectStyle exampleUrl https://mtg-jp.com/reading/mm/0036581/ last update: 2022-12-21T08:26:15+09:00
-
Webnovel 2022-12-18T14:18:15+09:00
waitSecondInHeadless 1.0 title //header//a[contains(@href,'/book/') and @title]/@title pageElement //div[@id='page']//div[contains(@class,'cha-content')]/div[contains(@class,'cha-words')]/div[contains(@class,'j_paragraph')]/div/p subtitle //header//span[preceding-sibling::a[contains(@href,'/book/') and @title] and @class='j_chapName'] firstPageLink //a[@id='j_read' and contains(@href,'/book/')] isNeedHeadless true nextLink //link[@rel='next'] tag //div[@class='m-tags']//a[contains(@href,'/tags/')] url ^https://www\.webnovel\.com/book/[^/]+ exampleUrl https://www.webnovel.com/book/villain-the-play-of-destiny_21226665705647705/chapter-163_63615575804397816 author //div[@id='page']//address/span|//div[@class='page']//h2/a[preceding-sibling::strong and @class='c_primary' and contains(@href,'/profile/')] last update: 2022-12-18T15:25:55+09:00
-
文字の冷凍庫、 2022-12-07T10:09:16+09:00
pageElement //article/div[@class='kiji-content']/*[not(contains(@class,'addtoany_share_save_container'))] title //article/div[@class='kiji-info']/div/a waitSecondInHeadless subtitle //article/h1 nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink //article/div[@class='paging']/div[@class='next']/a[@rel='next'] url ^https://dyreitou\.com/. tag author //footer/div[@class='copy']/a injectStyle exampleUrl https://dyreitou.com/%e5%be%8c%e6%97%a5%e8%ab%87%e2%91%a4 last update: 2022-12-07T10:09:16+09:00
-
lightnovelpub 2022-12-03T12:06:22+09:00
waitSecondInHeadless 2.0 title //h1[@itemprop='name']|//h1/a[@class='booktitle'] pageElement //div[@id='chapter-container']/*[not(descendant::dt[contains(text(),'ʟɪɢʜᴛɴᴏᴠᴇʟᴘᴜʙ.ᴄᴏᴍ')])] subtitle //h1/span[@class='chapter-title'] firstPageLink //header[@class='novel-header']//div[@class='novel-info']/nav[@class='links']/a[@id='readchapterbtn' and contains(@href,'/novel')] isNeedHeadless true nextLink //div[contains(@class,'chapternav')]/a[@rel='next' and contains(@href,'/novel/')] tag //header//div[@class='categories']//ul/li/a[contains(@href,'/stories-') and @class='property-item'] url ^https://www\.lightnovelpub\.com/novel/[^/]+ exampleUrl https://www.lightnovelpub.com/novel/allrounders-01122100 injectStyle p {padding: 20px 40px 40px; position: relative;} author //div[@class='main-head']/div[@class='author']/a[contains(@href,'/author')] last update: 2022-12-03T12:59:57+09:00
-
ノベルピア 2022-10-29T20:36:57+09:00
waitSecondInHeadless 2.0 title //div[@id='header_bar']//*[contains(@onclick,'pageload(')]/b[@class='cut_line_one'] pageElement //div[@id='novel_text']/ol[@id='novel_drawing']/*[not(child::div[child::img]) and not(@id='writer_comments_box') and not(@id='next_e_btn_bottom') and not(@class='is-last-btn') and not(@id='next_epi_btn_bottom')]/text() forceClickButton button.auth-yes nextButton #next_epi_btn_bottom subtitle //div[@id='header_bar']//*[contains(@onclick,'pageload(')]/span[@class='cut_line_one'] firstPageButton #episode_list_box table td[onclick] memo かなーりトリッキーな事をしているのでメモを残す。 このサイトは ol の中に font があってその中に文字が書かれているんだけれども、どうやら NSAttributedString に変換した時か何かで ol/font には 1. 2. 3. みたいな数字が付与されてしまう。 そのため、 injectStyle で ol {list-style: none} にするのだけれど、どうにもそれだけだと . (ピリオド) は消えないようである。 そこで、ol/font については /text() で文字列だけを取り出すようにして、その上で font { white-space: pre-wrap } で強制的に改行を入れさせるように対応した。 isNeedHeadless true tag //tbody[not(child::tr[@class='more_info'])]//span[contains(@onclick,'/search/hash/') and contains(@onclick, 'location=')] url ^https://novelpia\.jp/(viewer|novel)/\d+ exampleUrl https://novelpia.jp/novel/1272 injectStyle ol {list-style: none;} font { white-space: pre-wrap; } author //tbody[not(child::tr[@class='more_info'])]//a[contains(@href,'/user/')] last update: 2022-11-10T15:31:53+09:00
-
ふたまん+ 2022-10-18T14:47:05+09:00
title //main//h1[contains(@class,'article-header')] pageElement //main//div[@class='article-body']/*[not(@class='article-image') and not(contains(@class,'ad-rectangle')) and not(@class='next-link') and not(@class='article-pager')] firstPageLink //main//div[@class='article-teaser__more-btn']/a[contains(@href,'/articles/-/') and contains(@href,'page=1')] nextLink //main//div[@class='article-body']/div[@class='next-link']/a[contains(@href,'/articles/-/')] tag //main//header/ul[contains(@class,'article-tag-list')]//a[contains(@href,'/list/tag/')] url ^https://futaman\.futabanet\.jp/articles/-/\d+ exampleUrl https://futaman.futabanet.jp/articles/-/122699?page=1 author //main//div[@class='article-header-info']//div[@class='article-header-info__authorName'] last update: 2022-10-18T14:48:06+09:00
-
雨夜の月 2022-08-13T08:13:32+09:00
pageElement //p[contains(@class,'typesquare_option')] title waitSecondInHeadless subtitle //header/h1 nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink //a[contains(@class,'next-post')] url ^https://amayo\.halfmoon\.jp/[^/]+/ tag author //footer//div[contains(@class,'copyright')] injectStyle exampleUrl https://amayo.halfmoon.jp/rm0-1/ last update: 2022-08-13T08:13:32+09:00
-
TECHNOEDGE 2022-07-28T16:57:18+09:00
title //h1[@class='head'] pageElement //article[contains(@class,'arti-body')]/*[not(@class='af_box') and not(@class='modal')] memo 前後の記事へのlinkは取り出すのがかなり面倒くさそうなので諦めました(´・ω・`) tag //section[@class='main-special']/ul[@class='special-list']/li/a[contains(@href,'/special/')] url ^https://www\.techno-edge\.net/article/\d+/\d+/\d+/\d+\.html exampleUrl https://www.techno-edge.net/article/2022/07/14/89.html author //main/div[@class='author'][1]//h2[@class='writer-name'] last update: 2022-11-26T17:28:34+09:00
-
わんちゃんホンポ 2022-06-12T17:44:05+09:00
pageElement //main//article//div[contains(@class,'article_body')]/*[not(@class='img') and not(@class='toc-index') and not(self::p[@class='link']/a[contains(@href,'https://wanchan.jp/')]) and not(@class='detail_footer__ad') and not(@class='sns_group') and not(@class='article_osusume_comment')] title //main//header//h1[@class='article_title'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://wanchan\.jp/osusume/detail/\d+ tag //main//div[@id='csw_block']/div[@class='csw-word-container']/label[@class='csw-word-label'] author //main//header//div[@class='article_writer']/div[@class='name']/a[contains(@href,'/user/')] injectStyle exampleUrl https://wanchan.jp/osusume/detail/7759 last update: 2022-06-12T17:44:05+09:00
-
Lmaga.jp 2022-06-12T16:51:09+09:00
pageElement //div[@id='main']/div[@class='article_main']/div[@class='main_body']/div[@class='main_txt']/*[not(self::figure)] title //div[@id='main']/div[@class='article_main']/h1[@class='main_ttl'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.lmaga\.jp/news/\d+/\d+/\d+/ tag //div[@id='main']/div[@class='article_main']/div[@class='main_body']/div[@class='main_tag']//li/a[contains(@href,'/tag/')] author injectStyle exampleUrl https://www.lmaga.jp/news/2022/06/459430/ last update: 2022-06-12T16:51:09+09:00
-
ABEMA TIMES 2022-05-31T08:41:10+09:00
pageElement //main/article/div[contains(@class,'article-body')]/*[not(contains(@class,'figure')) and not(contains(@class,'article-thumb')) and not(contains(@class,'article-tvbtn')) and not(contains(@class,'article-relation'))] title //main/article//h1[contains(@class,'article-header')] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://times\.abema\.tv/articles/-/\d+ tag //main//div[contains(@class,'article-tag-wrap')]//li/a[contains(@class,'article-tag')] author //main/article//div[contains(@class,'article-header-tags')]//a[contains(@href,'/program/')] injectStyle exampleUrl https://times.abema.tv/articles/-/10025376 last update: 2022-05-31T08:41:10+09:00
-
ノベマ! 2022-05-26T00:32:11+09:00
pageElement //section/article[contains(@class,'bookText')]/div title //div[@class='readBookDetail']//div[@class='title']/h1 waitSecondInHeadless subtitle //section/article[contains(@class,'bookText')]/aside/div[@class='chapterName'] nextButton forceClickButton firstPageLink //div[@class='bookChapterList']//ul/li/a[contains(@href,'/book/') and contains(@href,'/1')] firstPageButton memo isNeedHeadless nextLink //link[@rel='next'] url ^https://novema\.jp/book/[^/]+ tag //article[@class='bookFooter']//ul[@class='keywordList']/li/a[contains(@href,'word=')] author //main/section//div[@class='name']/a[contains(@href,'/member/')] injectStyle exampleUrl https://novema.jp/book/n1660193/1 last update: 2022-05-26T00:32:11+09:00
-
ゲームメーカーズ 2022-05-17T15:03:59+09:00
title //div[@class='l-article-header-inner-txts']/h1 pageElement //main//section[contains(@class,'article-body')]/*[not(contains(@class,'image-wrapper')) and not(self::a) and not(contains(@class,'auther-wrapper')) and not(contains(@class,'section-recommend'))] tag //div[contains(@class,'article-header-tags')]/a[contains(@href,'/category/') or contains(@href,'/tag/')] url ^https://gamemakers\.jp/article/\d{4}_\d{2}_\d+_\d+/ exampleUrl https://gamemakers.jp/article/2022_05_17_2062/ author //main//section//a[contains(@href,'/author-archive/?author_id=')]//h6 last update: 2023-01-24T15:05:46+09:00
-
WFS blog 2022-05-13T11:01:27+09:00
pageElement //main/section[@id='blogEntry']//div[@class='sectionBody']/*[not(@class='profileArea') and not(@class='contentImg') and not(self::style)] title //main/section[@id='blogEntry']//h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.wfs\.games/blog/[^/]+/[^/]+/ tag author injectStyle exampleUrl https://www.wfs.games/blog/company/infographics/2022/ https://www.wfs.games/blog/story/interview12/ last update: 2022-05-13T11:01:27+09:00
-
JAMSTEC BASE 2022-05-04T17:24:28+09:00
pageElement //main/section//div[@class='p-articleDetail_main']/*[not(@class='c-toc') and not(self::figure) and not(@class='c-columnBox') and not(@class='c-news_outer') and not(contains(@class,'c-linkTag_outer')) and not(@class='c-share_outer') and not(@class='c-linkList_outer') and not(contains(@class,'c-media'))] title //main/section//div[@class='p-articleDetail_mv']//h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.jamstec\.go\.jp/j/[^/]+/topics/[^/]+/ tag //div[contains(@class,'p-articleDetail_mv_inner')]//div[contains(@class,'c-linkTag_outer')]/a[contains(@href,'/tag/')]/span[@class='c-linkTag_text'] author //main/section//div[@class='p-articleDetail_main']//div[@class='c-media_text']/h2 injectStyle exampleUrl https://www.jamstec.go.jp/j/pr/topics/shin-chishiki-20220428/ last update: 2022-05-04T17:24:28+09:00
-
PRESIDENT Online 2022-04-30T17:44:50+09:00
title //article//h1[@class='article__mainTtl']/text() pageElement //article/section[@class='article-body']/*[not(contains(@class,'image-area')) and not(@class='caution') and not(contains(@class,'ad-rectangle')) and not(contains(@class,'ext-container')) and not(@class='related-article')] subtitle //article//h1[@class='article__mainTtl']/span[@class='article__subTtl'] nextLink //div[@class='article-above-pagination']//a[@class='next' and contains(@href,'/articles/') and contains(@href,'page=')] tag //article//div[@class='leafInfo__tag']/a[contains(@href,'/tag/')] url ^https://president\.jp/articles/-/\d+ exampleUrl https://president.jp/articles/-/56527 author //article//ul[@class='articleInfo__list']//a[contains(@class,'author_link')]/img/@alt last update: 2022-04-30T17:53:45+09:00
-
Over The Rainbow ~にじの彼方~ 2022-04-17T16:59:51+09:00
title //div[@id='content']/p/a[contains(@href,'/page/') and position()=last()]|//section[not(child::h2[contains(text(),'目次')])]/ul[@class='menu']/li[position()=1]/a[contains(@href,'/page/')] pageElement //div[@id='container']/div[@id='content' and not(child::h3[text()='目次'])]/*[not(self::h2) and not(self::p[contains(child::a/text(),'トップページ')]) and not(@id='clap') and not(@id='continue') and not(@id='page_link') and not(@id='comment_form') and not(@id='vote')]|//section[not(@id) and not(child::h2[text()='目次'])]/article/*[not(self::h1) and not(@id='vote') and not(child::form)] subtitle //div[@id='content']/h2|//section/article/h1 firstPageLink //div[@id='content']/ul//li/a[contains(@href,'/page/')]|//section[child::h2[contains(text(),'目次')]]/ul[@class='menu']/li[child::a[contains(@href,'/page/')] and position()=1]/a memo このサイトは似たようなURLで小説本文と本文へのリンクが記述されている場合があり、さらに、本文へのリンクのページへのリンクが記述されたページがあり、さらにその上のリンクのページへのリンクのページなどもあって、かなりややこしいです。また、個々のページのDOM構造が統一されていないようで、少なくとも二種類のDOM構造を確認しています。具体的には、 https://nijikana.net/index.php/page/kamishiro_other_osaka01 のDOM構造と https://nijikana.net/index.php/page/kamishiro_other_18_01 のDOM構造は違っていて、片方は //div[@class='novel_view'] はあるけれど、もう片方にはありません。また、このサイトはスマートフォン等へのDOM構造ももっているため、それへの対応も必要になります。 nextLink //div[@id='content' and not(child::ul//li/a[contains(@href,'/page/')])]//div[@id='page_link']//li[@class='next']/a[contains(@href,'/page/')]|//section[not(child::h2[contains(text(),'目次')])]/ul[@class='menu']/li/a[contains(@href,'/page/') and contains(text(),'次:')] url ^https://nijikana\.net/index.php/page/[^/]+ exampleUrl https://nijikana.net/index.php/page/kamishiro_other_osaka https://nijikana.net/index.php/page/kamishiro_other_osaka01 last update: 2022-04-17T18:07:55+09:00
-
ORICON NEWS /special 2022-04-16T16:48:06+09:00
title //article//h1 pageElement //article/div[@class='special-content' and not(child::aside)]/*[not(contains(@class,'unit-photo'))] url ^https://www\.oricon\.co\.jp/special/\d+/ exampleUrl https://www.oricon.co.jp/special/58825/ last update: 2022-04-16T16:53:26+09:00
-
androidcentral 2022-04-16T16:29:38+09:00
title //header/h1 pageElement //div[@id='article-body']/*[not(self::figure) and not(contains(@id,'ad-unit')) and not(@class='youtube-video') and not(contains(@class,'featured_product_block')) and not(contains(@class,'see-more')) and not(contains(@class,'van_vid_carousel'))] url ^https://www\.androidcentral\.com/[^/]+/[^/]+/ exampleUrl https://www.androidcentral.com/gaming/virtual-reality/quest-pro-t-rex-super-resolution author //header//span[contains(@class,'by-author')]/a[@rel='author'] last update: 2022-04-16T16:34:32+09:00
-
Motor-Fan 2022-04-15T13:37:06+09:00
pageElement //main//div[contains(@class,'p-entry-content')]/*[not(@id='ez-toc-container') and not(self::figure) and not(self::aside)] title //main//h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://motor-fan\.jp/[^/]+/article/\d+/ tag //main//div[@class='c-entry-tags']/a[contains(@href,'/tag/')] author //main//ul[@class='c-meta']/li[contains(@class,'item--author')]//span[@id='dimension_author'] injectStyle exampleUrl https://motor-fan.jp/weboption/article/30308/ https://motor-fan.jp/mf/article/50990/ last update: 2022-04-15T13:37:06+09:00
-
ガジェット通信 2022-04-14T15:39:12+09:00
pageElement //div[@class='post-bodycopy']/*[not(self::script) and not(self::img) and not(self::center and child::div[contains(@class,'twitter-tweet')])] title //article[@class='post']/h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://getnews\.jp/archives/\d+ tag //article/div[@class='cattag']/span/a[contains(@rel,'tag')] author //div[@class='si_profile']//p[@class='prof']/a[contains(@href,'/author/')] injectStyle exampleUrl https://getnews.jp/archives/3256309 last update: 2022-04-14T15:39:12+09:00
-
Spring Leaves Translations 2022-04-11T08:49:30+09:00
title //main[@id='main']/article/header/h1 pageElement //main[@id='main']/article/div[@class='entry-content']/*[not(self::script) and not(@id='jp-post-flair') and not(child::a[text()='Previous Chapter' or text()='Next Chapter'])] nextLink //main[@id='main']/article/div[@class='entry-content']/p/a[text()='Next Chapter'] url ^https://muryoutranslation\.wordpress\.com/\d+/\d+/\d+/[^/]+/ last update: 2022-04-11T08:56:29+09:00
-
ORICON NEWS 2022-04-09T13:23:14+09:00
pageElement //article/div[@class='block-detail-body']/div[@class='mod-p'] title //h1[@class='title'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.oricon\.co\.jp/news/\d+/full/ tag //div[contains(@class,'block-tags')]//li/a[contains(@href,'/tag/')] author injectStyle exampleUrl https://www.oricon.co.jp/news/2230906/full/ last update: 2022-04-09T13:23:14+09:00
-
マイナビニュース 2022-04-04T19:34:43+09:00
title //div[@class='articleHeader']/h1 pageElement //article tag //div[contains(@class,'c-archiveMain')]//section[@gtm-label='article_tag']//a[@class='articleRelated_keywordList_nodeLink' and contains(@href,'/tag/')] url ^https://news\.mynavi\.jp/([^/]+/)?article/[^/]+/ exampleUrl https://news.mynavi.jp/techplus/article/20220331-2308013/ author //div[contains(@class,'c-archiveMain')]//div[@class='articleHeader_info']/a[@gtm-label='article_author' and contains(@href,'/author/')] last update: 2022-06-04T17:42:32+09:00
-
読むらじる。 2022-04-03T15:49:36+09:00
pageElement //section[@id='article']/div[@class='article-body'] title //section[@id='article']//div[@class='article-header-inner']/p[@class='article-header-title'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless true nextLink url ^https://www\.nhk\.or\.jp/radio/magazine/article/[^/]+/ tag //section[@id='article']//div[@class='article-header-inner']//p[@class='yr-tags']/span[contains(@class,'tag')] author //section[@id='article']//p[@class='article-header-program'] injectStyle exampleUrl https://www.nhk.or.jp/radio/magazine/article/kodomoq/j22XUmLiG8.html last update: 2022-04-03T15:49:36+09:00
-
Readwn.com 2022-03-26T17:25:59+09:00
pageElement //div[@class='chapter-content'] title //main//header//div[@class='titles']/h1 waitSecondInHeadless subtitle //main//header//div[@class='titles']/h2 nextButton forceClickButton firstPageLink //main/article/div[contains(@class,'novel-body')]/section[@id='chapters']/div[@id='chpagedlist']/ul[@class='chapter-list']/li/a[contains(@href,'/novel/') and contains(@href,'_1.html')] firstPageButton memo isNeedHeadless nextLink //main/article/section[contains(@class,'page-in')]/div[contains(@class,'chapternav')]/a[@class='nextchap' and contains(@href,'/novel/')] url ^https://www\.readwn\.com/novel/[^/]+\.html tag //main/article/div[contains(@class,'novel-body')]/section[@id='info']/div[@class='tags']/ul/li/a[@class='tag' and contains(@href,'/tags/')] author //main/article/header//div[@class='main-head']/div[@class='author']/span[@itemprop='author'] injectStyle exampleUrl https://www.readwn.com/novel/gods-the-beginning-of-creation-creates-an-ominous-red-haired-emperor-in-his-later-years_156.html last update: 2022-03-26T17:25:59+09:00
-
Findy Engineer Lab 2022-03-24T13:09:28+09:00
pageElement //div[@class='entry-content']/*[not(@class='profile-cards-list') and not(@class='table-of-contents') and not(child::iframe)] title //h1[contains(@class,'entry-title')] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://engineer-lab\.findy-code\.io/[^/]+ tag author //div[@class='profile-cards-list']//section[@itemprop='author']/div[@class='prof-txt']/p[@class='name'] injectStyle exampleUrl https://engineer-lab.findy-code.io/shougo-vim last update: 2022-03-24T13:09:28+09:00
-
4ST 2022-03-22T20:33:35+09:00
pageElement //div[contains(@class,'gp-element-post-content')] title //h1[contains(@class,'entry-title')] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://4st\.jp/archives/\d+ tag //span/a[contains(@href,'/category/')] author injectStyle exampleUrl https://4st.jp/archives/1000002779 last update: 2022-03-22T20:33:35+09:00
-
航空万能論GF 2022-03-17T08:43:47+09:00
pageElement //div[@id='main_col']/div[@id='article']//div[contains(@class,'post_content')]/*[not(@class='well') and not(child::img) and not(contains(text(),'関連記事:') and child::a[contains(@href,'https://grandfleet.info/')]) and not(self::table) and not(@class='va-social-buzz')] title //h2[@id='post_title'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://grandfleet\.info/[^/]+/[^/]+/ tag //ul[@id='post_meta_bottom']/li[@class='post_category']/a[contains(@href,'/category/')] author //ul[@id='post_meta_bottom']/li[@class='post_author']/a[contains(@href,'/author/')] injectStyle exampleUrl https://grandfleet.info/russia-related/putin-afraid-of-his-mothers-anger-imposes-responsibility-for-mobilizing-soldiers-recruited-by-the-army/ last update: 2022-03-17T08:43:47+09:00
-
キャリアハック 2022-03-14T15:22:11+09:00
pageElement //div[@id='articleDesc']/div[@id='contents-body']/*[not(@class='photo') and not(@class='endSet')] title //div[@class='articlePanel']//h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://careerhack\.en-japan\.com/report/detail/\d+ tag //div[@class='endSet']/div[@id='report-tags']/a[contains(@href,'/tag/')] author //div[@id='contents-body']//a[contains(@href,'/author/detail/')] injectStyle exampleUrl https://careerhack.en-japan.com/report/detail/1536 last update: 2022-03-14T15:22:11+09:00
-
じゃらんニュース 2022-03-12T20:11:58+09:00
pageElement //main/div[@class='article-post']/*[not(@class='post-main') and not(@class='mokuji_box') and not(self::figure) and not(@class='databox') and not(contains(@class,'blk-writer')) and not(@class='list-sns')] title //main//div[@class='post-main']//h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.jalan\.net/news/article/\d+/ tag //div[@id='contentBtm']/div[@class='mod-tag']//ul[@class='list_tag']/li[@class='active']/a[contains(@href,'/tag/')] author //main/div[@class='article-post']/div[contains(@class,'blk-writer')]/h2/a[contains(@href,'/author/')] injectStyle exampleUrl https://www.jalan.net/news/article/624108/ last update: 2022-03-12T20:11:58+09:00
-
Unityブログ(ja) 2022-03-06T22:30:38+09:00
pageElement //div[contains(@class,'max-w-content') and not(contains(@class,'max-w-content-')) and not(descendant::a[contains(@href,'/topic/') and contains(@class,'component-browsetopic__link')]) and not(descendant::figure) and not(descendant::a[@aria-label]) and not(contains(@class,'hidden')) and not(descendant::header)] title //h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://blog\.unity\.com/ja/[^/]+/ tag //div[child::div[descendant::a[@aria-label='to-twitter']] and contains(@class,'max-w-content')]//a[contains(@href,'topic')] author //div[child::div[child::h1]]//a[contains(@href,'/author/')] injectStyle exampleUrl https://blog.unity.com/ja/technology/optimize-your-mobile-game-performance-expert-tips-on-graphics-and-assets last update: 2022-03-06T22:30:38+09:00
-
Web河出 2022-03-06T20:03:26+09:00
pageElement //div[@id='postCont'] title //h1[@class='postTtl'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://web\.kawade\.co\.jp/[^/]+/\d+/ tag //article[@id='articlePost']//span[@class='postLabel'] author //header[@id='articleHead']//p[@class='postAuthor'] injectStyle exampleUrl https://web.kawade.co.jp/bungei/34777/ last update: 2022-03-06T20:03:26+09:00
-
SAKISIRU 2022-03-01T14:50:18+09:00
title //div[@class='article']/div[@class='title']/h1 pageElement //div[contains(@class,'articleContent')]/*[not(contains(@id,'attachment_'))] tag //div[@class='article']//ul[@class='post-categories']/li/a[contains(@href,'/category/')]|//div[@class='article']//div[@class='tag']/a[contains(@href,'/tag/') and @rel='tag'] url ^https://sakisiru\.jp/\d+ exampleUrl https://sakisiru.jp/22034 author //div[@class='articleBottom']//div[@class='author']/a[contains(@href,'/author/')] last update: 2022-03-01T14:55:13+09:00
-
@IT 2022-02-18T22:18:03+09:00
title //h1[@class='title']/span[@class='title__maintext'] pageElement //div[@class='subscription']/*[not(self::div[@class='cmsBodyItmidSeriesButtonRegist']) and not(child::h3[text()='筆者紹介'])]|//div[@id='cmsBody']/div[@class='inner']/*[not(self::script) and not(self::link) and not(@id='masterSocialbuttonTop') and not(@id='MembersOnlyCaution') and not(@id='body_insert_ad') and not(@id='CmsMembersControl') and not(@id='cmsCopyright') and not(@id='endlinkConnection') and not(@id='AITcmsHoleBodyEnd') and not(@class='cmsBodyItmidSeriesButtonRegist') and not(child::h3[text()='筆者紹介']) and not(@id='cmsCopyright') and not(@id='ITIR') and not(@id='cmsSeriesList') and not(@id='AITcmsHoleBodyEnd') and not(contains(@id,'cx_recommend_rm')) and not(@class='subscription')] nextLink //div[@id='cmsSeriesList']/article//article[@data-articletype='連載' and following-sibling::article[contains(@class,'mycolBoxIndex')]][last()]//h1/a[contains(@href,'/articles/')] url ^https://atmarkit\.itmedia\.co\.jp/ait/articles/\d+/\d+/ exampleUrl https://atmarkit.itmedia.co.jp/ait/articles/2202/18/news019.html author //div[@id='masterMain']//div[@id='cmsByline']//a[contains(@href,'/author/')] last update: 2022-02-18T22:37:50+09:00
-
ケータイ小説 野いちご 2022-02-17T15:21:47+09:00
title //div[@class='readBookDetail']//div[@class='title']/h1 pageElement //section[contains(@class,'bookContent')]/article[contains(@class,'bookText')]/div subtitle //article//div[@class='chapterName']/p[@class='chapter'] firstPageLink //main//dl[@class='chapterLink']/dt/a[contains(@href,'/book/')] nextLink //link[@rel='next']/@href tag //section[@id='rightmenu']/article/ul[@class='keywordBtn']/li/a[contains(@href,'/search/book?word=')] url ^https://www\.no-ichigo\.jp/(read/book/book_id/\d+|book/n\d+/\d+) exampleUrl https://www.no-ichigo.jp/read/book/book_id/1654448 author //div[@class='bookDetail']//span[@class='btn-white']/a[contains(@href,'/member/')] last update: 2022-12-16T20:03:55+09:00
-
メディアヌップ 2022-02-16T14:39:08+09:00
pageElement //div[@class='available-content '] title //h1[contains(@class,'post-title')] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://sasakill\.substack\.com/p/[^/]+ tag author //div[@class='post-header']/table//div[@class='meta-author']//a[contains(@href,'/profile/')] injectStyle exampleUrl https://sasakill.substack.com/p/re-re-imaginarynft-and-realnft last update: 2022-02-16T14:39:08+09:00
-
47 NEWS 2022-02-12T14:19:49+09:00
pageElement //div[@class='main__articleBody']/article/*[not(contains(@class,'ma__figure'))] title //h1[@class='main__title'] waitSecondInHeadless subtitle //div[@class='main__titleWrapper']/p[@class='main__subTitle'] nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://nordot\.app/\d+ tag author injectStyle exampleUrl https://nordot.app/859257660718088192 last update: 2022-02-12T14:19:49+09:00
-
EETimes Japan 2022-02-09T13:26:02+09:00
pageElement //div[@class='subscription'] title //h1[@class='title']/span[@class='title__maintext'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://eetimes\.itmedia\.co\.jp/ee/articles/\d+/\d+/news\d+.html tag author //div[@id='masterMain']//div[@id='cmsByline']/div[@id='byline']/a[contains(@href,'/author/')] injectStyle exampleUrl https://eetimes.itmedia.co.jp/ee/articles/2202/07/news149.html last update: 2022-02-09T13:26:02+09:00
-
世界史リンク工房 2022-02-08T16:08:32+09:00
pageElement //div[@itemprop='articleBody'] title //h1[@itemprop='name'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https?://history-link-bottega\.com/archives/\d+\.html tag //dl[@class='article-tags']/dd/a[contains(@href,'/tag/')] author injectStyle exampleUrl http://history-link-bottega.com/archives/36932429.html last update: 2022-02-08T16:08:32+09:00
-
carview! 2022-02-03T08:29:57+09:00
pageElement //div[@class='main_content--sentence'] title //h1[@class='main_content--head--main_txt'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink //div[@class='main_content--sentence']//div[@id='fullnk']/p[@class='main_content--sentence--more_link']/a[contains(@href,'/news/detail/')] firstPageButton memo isNeedHeadless nextLink url ^https://carview\.yahoo\.co\.jp/news/detail/[^/]+/ tag author injectStyle exampleUrl https://carview.yahoo.co.jp/news/detail/e43b5682105dcc17bea7e564073b8182c5197592/ last update: 2022-02-03T08:29:57+09:00
-
AppBank 2022-01-27T11:00:19+09:00
pageElement //div[@class='entry-content']/*[not(@class='feed-link') and not(@class='appbank-tags') and not(self::aside)] title //article/h1[@class='entry-title'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.appbank\.net/\d+/\d+/\d+/[^/]+/\d+ tag //div[@class='entry-content']/p//category author //article/div[@class='entry-meta']//span[@class='entry-author-writer']/a[contains(@href,'/author/')] injectStyle exampleUrl https://www.appbank.net/2022/01/27/technology/2185746.php last update: 2022-01-27T11:00:19+09:00
-
MBS 2022-01-07T12:40:45+09:00
pageElement //section[@id='article']/p[not(@class)] title //section[@id='article']/h3 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.mbs\.jp/news/[^/]+/\d+/ tag author injectStyle exampleUrl https://www.mbs.jp/news/kansainews/20220106/GE00041872.shtml last update: 2022-01-07T12:40:45+09:00
-
Fun Pay! 2021-12-22T16:06:54+09:00
pageElement //main/article//div[@id='column-main']/*[not(self::h1) and not(@id='snstool') and not(self::ul) and not(contains(@class,'writer-list')) and not(contains(@class,'rcardbox')) and not(@id='page_switcher') and not(@id='recommend-article') and not(@id='riBreadcrumbs') and not(@class='date-published')] title //main/article//h1[@class='article_title'] waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://card-media\.money\.rakuten.co.jp/articles/\d+/\d+/\d+/\d+/ tag //main/article//ul/li[@class='tag']/a[contains(@href,'/tag/')] author //main/article//div[contains(@class,'writer-list')]//h2/a[contains(@href,'/writer/')] injectStyle exampleUrl https://card-media.money.rakuten.co.jp/articles/2021/11/30/01/ last update: 2021-12-22T16:06:54+09:00
-
NECセキュリティブログ 2021-12-22T14:54:32+09:00
pageElement //main/section[@class='sct-primary']/div[@class='str-outer' and preceding-sibling::div//div[contains(@class,'comp-sns')] and following-sibling::div//h2[@id='anc-reference']] title //main/section[@class='sct-primary']//h1 waitSecondInHeadless subtitle nextButton forceClickButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://jpn\.nec\.com/cybersecurity/blog/\d+/index.html tag author injectStyle exampleUrl https://jpn.nec.com/cybersecurity/blog/211217/index.html last update: 2021-12-22T14:54:32+09:00
-
MIT Technology Review 2021-12-22T09:11:45+09:00
title //div[@id='outline']/h1 pageElement //div[@id='outline']/p|//div[@id='content']/*[not(@class='sns') and not(@class='ranking') and not(@id='detail')] url ^https://www\.technologyreview\.jp/[^/]+/\d+/[^/]+/ exampleUrl https://www.technologyreview.jp/s/263829/the-internet-runs-on-free-open-source-software-who-pays-to-fix-it/ author //div[@id='detail']//dt/a[contains(@href,'/author/')] last update: 2021-12-22T09:14:28+09:00