pageElement | //div[@id='posts']/div[@class='post']/*[self::h2 or self::p] |
---|---|
title | //div[@id='posts']/div[@class='post']/h1 |
waitSecondInHeadless | |
subtitle | |
nextButton | |
firstPageLink | |
firstPageButton | |
memo | |
isNeedHeadless | |
nextLink | |
url | ^https://radiolife\.com/[^/]+/[^/]+/\d+/ |
tag | |
author | |
injectStyle | |
exampleUrl | https://radiolife.com/internet/amazon/45201/ |
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 が優先されます)。
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. nextButton
2. firstPageButton
3. nextLink
4. firstPageLink
の順(数字が若い方が優先)になります。
なお、ことせかい の動作としては、このデータベースとAutopagerizeのデータベースの両方を使ってデータを読み込むように作られています。
動作としては対象のURLについて、まずこちらのデータベースにあるものが優先され、こちらのデータベースに載っていないURLのものについてはAutopagerizeのデータベースを参照することになります。
ですので、Autopagerize側で定義されている情報で十分なものの場合は改めてこちら側のデータベースに登録する必要は無いかもしれません。
Last Update: 2021-01-16T22:51:05+09:00 History
Item List
-
ラジオライフ.com 2021-01-16T22:51:05+09:00
last update: 2021-01-16T22:51:05+09:00
-
DeNA エンジニアブログ 2021-01-14T14:17:44+09:00
pageElement //main//div[@class='article-body'] title //main//div[@class='article-header']/h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://engineer\.dena\.com/posts/ tag //main//div[@class='article-header']//a[contains(@href,'/tags/')] author //div[@class='article-footer']//a[contains(@href,'/authors/')] injectStyle exampleUrl https://engineer.dena.com/posts/2021.01/kencom-hoken-team-building/ last update: 2021-01-14T14:17:44+09:00
-
テレ朝 news 2020-12-18T11:48:48+09:00
pageElement //div[@class='main-container']/section//div[@id='news_body'] title //h1[@id='news_title']/text() waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://news\.tv-asahi\.co\.jp/news_[a-z]+/articles/\d+.html tag author injectStyle exampleUrl https://news.tv-asahi.co.jp/news_society/articles/000201643.html last update: 2020-12-18T11:48:48+09:00
-
Novelism 2020-12-14T23:13:33+09:00
title //div[@id='app']//div[@class='v-reader']//div[@class='v-reader-main']//h1 pageElement //div[@id='app']//div[@class='v-reader']//div[@class='v-reader-main']//div[contains(@class,'v-reader-content-container')] subtitle //div[@id='app']//div[@class='v-reader']//div[@class='v-reader-main']//h2[@class='v-reader-title'] firstPageLink //*[contains(@class,'table-of-contents')]//li[@id]//a[contains(@href,'/novel/') and contains(@href,'/article/')] isNeedHeadless true nextLink //div[@id='app']//div[@class='v-reader']//div[@class='v-reader-main']//a[contains(@class,'v-reader-pagination-link') and contains(@class,'justify-end')] tag //div[preceding-sibling::header[@id='navigation']]//div[contains(@class,'items-center')]//a[contains(@href,'/novel/keyword/')] url ^https://novelism\.jp/novel/[^/]+/ exampleUrl https://novelism.jp/novel/PZZjgtOjR5aQavm7ruz1kA/ author //div[@id='app']//div[@class='v-reader']//div[@class='v-reader-main']//div[contains(@class,'avatar')]/span last update: 2020-12-14T23:40:34+09:00
-
好きな物語と出会えるサイト tree 2020-12-06T22:52:41+09:00
pageElement //div[@id='main']//div[@class='episode']/div[@class='inner'] title //div[@id='main']/div[@class='header']//div[@class='title']//a[contains(@href,'/works/')] waitSecondInHeadless subtitle //div[@id='main']//div[@class='episode']/h1 nextButton firstPageLink //div[@class='m-navTab__content']//div[@class='contents']/ol/li/a[contains(@href,'/works/episode/')] firstPageButton memo isNeedHeadless nextLink //div[@id='main']//div[contains(@class,'next')]//p[@class='arrowR']/a[contains(@href,'/works/episode/')] url ^https://tree-novel\.com/works/ tag author //div[@id='side']//div[contains(@class,'title')]/div[contains(@class,'author')]/a[contains(@href,'/author/')] injectStyle exampleUrl https://tree-novel.com/works/691094fcfc4b309954a8121ab4d1eb7a.html last update: 2020-12-06T22:52:41+09:00
-
CyberAgent Developers Blog 2020-11-27T17:30:46+09:00
pageElement //article[@id and contains(@class,'cadev-entry')]/div[@class='entry-content']/*[not(self::figure) and not(self::footer) and not(@class='nav-links')] title //article[@id and contains(@class,'cadev-entry')]/header//h1[@class='entry-title'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://developers\.cyberagent\.co\.jp/blog/archives/\d+/ tag //article[@id and contains(@class,'cadev-entry')]/div[@class='entry-content']/footer[@class='entry-footer']/ul[@class='tags']/li/a[@rel='tag'] author //article[@id and contains(@class,'cadev-entry')]/div[@class='entry-content']/footer[@class='entry-footer']//a[contains(@href,'/author/')] injectStyle exampleUrl https://developers.cyberagent.co.jp/blog/archives/27782/ last update: 2020-11-27T17:30:46+09:00
-
SEGA TECH BLOG 2020-11-25T18:13:38+09:00
pageElement //div[@class='entry-content']/*[not(self::figure) and not(child::iframe)] title //h1[@class='entry-title']/a[contains(@href,'/entry/')] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //div[contains(@class,'pager-permalink')]/span[@class='pager-prev']/a[contains(@href,'/entry/') and @rel='prev'] url ^https?://techblog\.sega\.jp/entry/\d+/\d+/\d+/\d+ tag //div[contains(@class,'entry-categories')]/a[contains(@href,'/category/')] author //footer[@class='entry-footer']//span[@class='user-name-nickname'] injectStyle exampleUrl http://techblog.sega.jp/entry/2020/11/25/100000 last update: 2020-11-25T18:13:38+09:00
-
btrax blog 2020-11-25T17:56:35+09:00
title //div[@class='banner']//h1[@itemprop='name'] pageElement //div[@id='wrap']//div[not(@id='in_article_ad')]/div[contains(@class,'wp-content-tag')]/*[not(self::blockquote) and not(contains(@class,'wrap_iframe'))] url ^https://blog\.btrax\.com/jp/[^/]+/ exampleUrl https://blog.btrax.com/jp/google-vs-apple/ author //div[@class='inbox-author']//div[@class='namelog']/a[contains(@href,'/author/')] last update: 2020-11-25T17:57:27+09:00
-
BUSINESS INSIDER 2020-11-11T17:42:39+09:00
pageElement //article[@class='p-post']//div[@class='p-post-content']/div/*[not(contains(@class,'contentFigure')) and not(self::style) and not(@class='ogp')] title //article[@class='p-post']/h1[@class='p-post-title'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.businessinsider\.jp/post- tag //div[@class='p-post-tag']/ul[@class='p-post-tagList']/li[@class='p-post-tagItem']/a author //article[@class='p-post']/div[@class='p-post-byline']//li/a[contains(@href,'/author/')] injectStyle exampleUrl https://www.businessinsider.jp/post-223942 last update: 2020-11-11T17:42:39+09:00
-
朝日新聞 EduA 2020-11-08T21:16:42+09:00
pageElement //article//div[contains(@class,'article-detail__body-inner')]/p title //article[@class='article-detail']//h1[contains(@class,'article-detail__caption')] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //nav[@class='pager']/p[contains(@class,'pager__next')]/a url ^https://www\.asahi\.com/edua/article/[0-9]+ tag //article[@class='article-detail']//div[contains(@class,'article-detail__head-row')]/ul[@class='article-detail__tag-list']/li/a[contains(@href,'/edua/tag/')] author //article[@class='article-detail']//div[@class='article-detail__author']/a[contains(@href,'/edua/author/')]//figcaption injectStyle exampleUrl https://www.asahi.com/edua/article/13899713?iref=pc_ss_date last update: 2020-11-08T21:16:42+09:00
-
Berry's Cafe(スマートフォン) 2020-10-28T01:11:51+09:00
title //div[@id='wrapper']/div[@id='content']/div[@id='content-header']/h2 pageElement //div[@id='content']//div[contains(@class,'content-body')] subtitle //div[@id='wrapper']/div[@id='content']/div[@id='content-header']/p[@class='chapter'] firstPageLink //div[@id='content']//dl[@class='chapterLink']//a[contains(@href,'/book/')]|//div[@id='contents-block']/ul/li/a[contains(@href,'/book/') and contains(@href,'/1/')] nextLink //div[@id='wrapper']/div[@id='content']//ul[contains(@class,'pageLink')]/li[@class='pageLinkR']/a[contains(@href,'/book/')] tag //div[@id='content-footer']//ul/li/a[contains(@href,'/search/search.htm') and contains(@href,'word=')] url ^https://www\.berrys-cafe\.jp/spn/book/[^/]+/ exampleUrl https://www.berrys-cafe.jp/spn/book/n1618206/ author //div[@id='content-header']//div[@class='bookDetail']//span[@itemprop='author']/a[contains(@href,'/reader/profile.htm')] last update: 2020-10-28T02:47:37+09:00
-
Berry's Cafe(PC) 2020-10-28T00:30:41+09:00
title //div[@id='header']/h1[@id='top'] pageElement //div[@id='content']/p[contains(@class,'bodyText') and not(contains(@class,'alignC'))] subtitle //div[@id='header']/h3[contains(@class,'sectionTit')] firstPageLink //div[@id='contents-block']//li[contains(@class,'firstChild')]/a[contains(@href,'/book/')]|//div[@id='contents-block']/ul/li/a[contains(@href,'/book/') and contains(@href,'/1/')] nextLink //div[@id='book-footer']/p[@class='pager']/a[contains(@class,'next') and contains(@href,'/book/')] tag //dl[@class='bookKeyword']/dd/a[contains(@href,'/search/search.htm')] url ^https://www\.berrys-cafe\.jp/pc/book/[^/]+/ exampleUrl https://www.berrys-cafe.jp/pc/book/n1618206/ author //div[contains(@class,'bookHeader')]/div[contains(@class,'bookDetail')]/h2[@itemprop='author']/a[contains(@href,'/reader/profile.htm')] last update: 2020-10-28T02:54:08+09:00
-
アニメハック/ニュース 2020-10-27T03:51:32+09:00
pageElement //div[contains(@class,'newsDetailBox')]/*[not(contains(@class,'newsDetailPhotoArea')) and not(contains(@class,'youtubeFrame')) and not(contains(@class,'pageInfoArea'))] title //div[@class='headArea']//h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //div[contains(@class,'pagination')]/span[@class='next_page']/a[@rel='next'] url ^https://anime\.eiga\.com/news/[0-9]+/ tag //div[@class='tagArea']/ul/li/a author injectStyle exampleUrl https://anime.eiga.com/news/112131/ last update: 2020-10-27T03:51:32+09:00
-
Unity for Pro Tips 記事 2020-10-19T16:42:24+09:00
pageElement //div[@class='tips-article-intro']|//div[@class='tips-article-content']/*[not(self::figure) and not(@id='ez-toc-container') and not(self::pre[@class='wp-block-code'])] title //article[@class='tips-article']//h1[@class='tips-article-title'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://forpro\.unity3d\.jp/unity_pro_tips/[0-9]+/[0-9]+/[0-9]+/[0-9]+/ tag author injectStyle exampleUrl https://forpro.unity3d.jp/unity_pro_tips/2020/10/06/1313/ last update: 2020-10-19T16:42:24+09:00
-
メシ通 2020-10-18T21:31:18+09:00
pageElement //div[@class='entry-inner']/header/p[@class='entry-og-description']|//div[@class='entry-content']/*[not(@class='profile-cards-list')] title //div[@class='entry-inner']/header/h1[@class='entry-title'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.hotpepper\.jp/mesitsu/entry/[^/]+/ tag //div[@class='entry-inner']/header/div[contains(@class,'entry-categories')]/a[contains(@class,'entry-category-link') and contains(@href,'/archive/category/')] author injectStyle exampleUrl https://www.hotpepper.jp/mesitsu/entry/editorial/2020-00345 last update: 2020-10-18T21:31:18+09:00
-
ダ・ヴィンチ ニュース 2020-10-18T18:03:46+09:00
pageElement //div[@class='article-body__main']/*[not(child::figure)] title //article[@class='article-body']/h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://ddnavi\.com/[^/]+/[0-9]+/[^/]+/ tag //div[contains(@class,'article-block')]/div[@class='article-relatedword']/ul/li/a[contains(@href,'/tag/') and @rel='tag'] author injectStyle exampleUrl https://ddnavi.com/interview/686198/a/ last update: 2020-10-18T18:03:46+09:00
-
CREATORS STATION 2020-10-14T18:55:20+09:00
title //h2[@class='sgl-Title'] pageElement //div[@class='sgl-Content']/*[not(contains(@class,'sgl-Figure')) and not(@class='profile')] tag //div[@class='sgl-Tag']/ul/li/a[@class='sgl-Tag_Link' and contains(@href,'/tag/')] url ^http://www\.creators-station\.jp/[^/]+/([^/]+/)?\d+ exampleUrl http://www.creators-station.jp/interview/curiousity/100370 last update: 2020-10-14T19:05:57+09:00
-
RETRIP 2020-10-10T19:53:37+09:00
pageElement //div[@class='articleMain']//div[@class='content']/p[@class='contentTopDesc']|//div[@class='articleMain']//div[@class='content']/article/*[not(contains(@class,'expImg'))] title //div[@class='contentTopTitle']/h1/a[contains(@href,'/articles/') and @title] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //div[@class='paginateWrap']//a[@rel='next' and contains(@href,'?page=') and @class='next'] url ^https://rtrp\.jp/articles/[0-9]+/ tag //div[contains(@class,'tagBottom')]/ul[@article-tag-calc]//a[contains(@href,'/tags/')] author //div[@class='userProfile']//span[@class='userName']/a[@class='userName' and contains(@href,'/users/')] injectStyle exampleUrl https://rtrp.jp/articles/129003/ last update: 2020-10-10T19:53:37+09:00
-
声優グランプリ 2020-10-09T20:12:51+09:00
pageElement //div[@class='entry-content']/*[not(child::iframe) and not(contains(@class,'twitter-tweet')) and not(class='yarpp-related')] title //div[@class='header-thumbnail-title']/h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://seigura\.com/\?p= tag //div[@class='entry-header-container']//ul[@class='post-tags']/li/a[contains(@href,'/tag/') and @rel='tag'] author injectStyle exampleUrl https://seigura.com/?p=46753&preview=1&_ppp=dc4c7bce9e last update: 2020-10-09T20:12:51+09:00
-
Yahoo! ニュース(article) 2020-10-07T16:03:02+09:00
pageElement //div[contains(@class,'article_body')]/div/*[not(descendant::picture)] title //article/header/h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //div[@class='pagination_body']//li[contains(@class,'pagination_item-next')]/a[contains(@href,'/articles/') and contains(@data-ylk,'next')] url ^https://news\.yahoo\.co\.jp/articles/ tag author injectStyle exampleUrl https://news.yahoo.co.jp/articles/0960757c17deda48910c476937ed4ceb5afde8a5 last update: 2020-10-07T16:03:02+09:00
-
毎日が発見ネット 2020-10-06T17:26:06+09:00
pageElement //div[@class='entryBody']/*[not(descendant::a[contains(@href,'/cms/mt-search.cgi') and @target='_blank']) and not(self::script)] title //article[@id]/div[@class='asset-header']/h1[@itemprop='name'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://mainichigahakken\.net/[^/]+/article/post- tag //div[@class='wrap-PageInnerTag']/ul[@class='tag-list']/li/a[contains(@href,'/cms/mt-search.cgi') and contains(@href,'tag=')] author injectStyle exampleUrl https://mainichigahakken.net/future/article/post-731.php last update: 2020-10-06T17:26:06+09:00
-
ForRide 2020-10-06T16:43:39+09:00
pageElement //section[@class='entry-content']/*[not(self::section) and not(child::*[@class='youtube']) and not(@id='ez-toc-container') and not(child::img) and not(@class='shopinfo')] title //header[@class='post-header']/h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://forride\.jp/[^/]+/ tag //section[@class='tab']//div[contains(@class,'keyword')]/ul/li/a[contains(@href,'/tag/') and @rel='tag'] author //section[@class='author']/div[@class='description']/h3 injectStyle exampleUrl https://forride.jp/motorcycle/noslisu last update: 2020-10-06T16:43:39+09:00
-
PIXIV FANBOX 2020-10-06T15:40:49+09:00
pageElement //div[@class='DraftEditor-root'] title //title waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://[^./]+\.fanbox.cc/posts/ tag //div[preceding-sibling::article]/a[contains(@href,'/tags/')] author //a[@href='/plans']/button/div/span/div injectStyle exampleUrl https://akzw.fanbox.cc/posts/1471939 last update: 2020-10-06T15:40:49+09:00
-
Buzz Plus News 2020-10-06T12:53:10+09:00
pageElement //div[@id='sentences']/*[not(descendant::img) and not(@class='ad-desktop-w') and not(contains(@class,'youtube')) and not(@class='info-buzzplus')] title //div[@id='article-title']/h1 waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://buzz-plus\.com/article/[0-9]+/[0-9]+/[0-9]+/ tag //div[contains(@class,'post-tag-list')]/a[contains(@href,'/buzz-plus.com/tag/') and @rel='tag'] author //div[@class='writer-info']//a[contains(@href,'/author/')] injectStyle exampleUrl https://buzz-plus.com/article/2020/10/05/alien5-start-again-news/ last update: 2020-10-06T12:53:10+09:00
-
Amebaブログ 2020-10-05T14:56:49+09:00
pageElement //div[@id='entryBody'] title //h1[@class='skin-entryTitle'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://ameblo\.jp/[^/]+/entry-[0-9]+\.html tag //dd/a[contains(@href,'/theme-') and @rel='tag'] author //div[contains(@class,'skin-profile')]//a[contains(@href,'profile.ameba.jp')] injectStyle exampleUrl https://ameblo.jp/yoshiko-sakakibara/entry-12629209284.html last update: 2020-10-05T14:56:49+09:00
-
zenn 2020-09-27T20:30:39+09:00
title //h1[contains(@class,'ArticleHeader_title')] pageElement //section//div[contains(@id,'toc-target-content')]/div/*[not(self::div[@class='code-block-container'])] tag //a[contains(@class,'TopicList_item') and contains(@href,'/topics/')]/div[contains(@class,'TopicList_name')] url ^https://zenn\.dev/[^/]+/articles/ exampleUrl https://zenn.dev/ymrl/articles/ec72de6f18fe04a28127 https://zenn.dev/qnighy/articles/64145f6ff849e5 author //aside[contains(@class,'ArticleMain_author')]//a[contains(@class,'UserBio_name')] last update: 2021-01-02T16:45:21+09:00
-
和楽 2020-09-27T07:33:38+09:00
title //div[contains(@class,'article-header-area')]/h1 pageElement //div[@class='article-content']/*[not(self::figcaption) and not(self::div[@itemprop='author']) and not(self::div[@class='sns-share-box'])] tag //div[contains(@class,'article-header-area')]//div[@class='article-author']/a/div[contains(@class,'category')] url ^https://intojapanwaraku\.com/[^/]+/\d+/ exampleUrl https://intojapanwaraku.com/travel/122476/ author //div[contains(@class,'authorname')]/a[contains(@href,'https://intojapanwaraku.com/author/')]/span[@itemprop='name'] last update: 2020-09-27T07:45:08+09:00
-
大紀元 EPOCH TIMES 2020-09-27T07:22:09+09:00
pageElement //article/div[@class='page_content'] title //h1[@class='page_title'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.epochtimes\.jp/p/ tag author injectStyle exampleUrl https://www.epochtimes.jp/p/2020/09/62683.html last update: 2020-09-27T07:22:09+09:00
-
中日新聞 2020-09-26T19:24:23+09:00
pageElement //div[@class='content-area']//div[@class='block' and not(child::div[@class='clear'])] title //main//h1[@class='hdg'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.chunichi\.co\.jp/article/ tag author injectStyle exampleUrl https://www.chunichi.co.jp/article/127041 last update: 2020-09-26T19:24:23+09:00
-
NATIONAL GEOGRAPHIC 2020-09-23T19:29:23+09:00
title //div[@class='articleTitleBox']/h1 pageElement //div[@class='articleInner']/*[not(@class='topPageNav') and not(@class='bpbox_center') and not(@class='recommendBox') and not(@class='btmPageNav') and not(@class='bpimage_right')] firstPageLink //div[@id='authorKijiList']//ul/li/p[@class='title']/a memo 連載記事と単発の記事があるので注意 nextLink //div[@class='pageNav']//a[@class='nextPage']|//div[@id='pagePrevNextNaviBottom']/a[@class='next'] url ^https://natgeo\.nikkeibp\.co\.jp/[^/]+/[^/]+/ exampleUrl https://natgeo.nikkeibp.co.jp/nng/article/20140623/403966/ https://natgeo.nikkeibp.co.jp/atcl/news/17/062700244/ last update: 2020-09-23T19:31:58+09:00
-
ソレドコ 2020-09-18T15:10:16+09:00
pageElement //div[@class='entry-content']/*[not(child::img) and not(@style) and not(self::footer) and not(child::a[@target='_blank'])] title //h1[contains(@class,'entry-title')]/a[contains(@href,'/entry/')] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://srdk\.rakuten\.jp/entry/ tag //div[contains(@class,'entry-categories')]/a[contains(@href,'/archive/category/')] author injectStyle exampleUrl https://srdk.rakuten.jp/entry/2020/09/18/103000 last update: 2020-09-18T15:10:16+09:00
-
Bloomberg jp news article 2020-09-18T14:06:26+09:00
pageElement //div[contains(@class,'body-columns')]/div[contains(@class,'body-copy')]/*[not(child::a[contains(@href,'/join/')])] title //h1[contains(@class,'lede-text-only__hed')] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.bloomberg\.co\.jp/news/articles/ tag author //address injectStyle exampleUrl https://www.bloomberg.co.jp/news/articles/2020-09-17/QGTJFFT1UM1301 last update: 2020-09-18T14:06:26+09:00
-
moneyforward articles 2020-09-15T05:31:51+09:00
title //div[@class='article-detail']//h1 pageElement //div[contains(@class,'article-body')]/section[contains(@class,'mp-article-body')] nextLink //div[@class='next-caption-box']/a[contains(@href,'/articles/') and @class='next-caption'] url ^https://media\.moneyforward\.com/articles/ exampleUrl https://media.moneyforward.com/articles/5296 author //*[@class='author-details-title']//*[@class='author-details-name'] last update: 2020-09-15T05:35:42+09:00
-
BLove 2020-09-12T22:51:43+09:00
pageElement //*[contains(@class,'fs-novel-section') and not(contains(@class,'fs-novel-section-title')) and not(contains(@class,'fs-novel-section-ad'))] title //a[contains(@class,'fs-novel-title') and contains(@href,'/novel/')] waitSecondInHeadless subtitle //h2[@class='fs-novel-section-title'] nextButton firstPageLink //ul[contains(@class,'fs-novel') and descendant::h2[@class='fs-novel-title']]//a[contains(@href,'/novel/')] firstPageButton memo isNeedHeadless nextLink //a[contains(@href,'/novel/') and @data-icon='arrow-r'] url ^https://blove\.jp/novel/ tag //div[@class='tag-item']/a[contains(@href,'/tag/')] author //div[@class='fs-novel-author']/a[contains(@href,'/user/')] injectStyle exampleUrl https://blove.jp/novel/210770-%E8%81%96%E5%89%A3%E3%82%92%E6%8A%9C%E3%81%8F/ last update: 2020-09-12T22:51:43+09:00
-
d-love 2020-09-12T22:35:27+09:00
pageElement //*[contains(@class,'fs-novel-section')] title //title waitSecondInHeadless subtitle nextButton firstPageLink //a[contains(@href,'/novel/') and contains(text(),'小説を読む')] firstPageButton memo isNeedHeadless nextLink //a[@data-icon='arrow-r' and contains(@href,'/novel/')] url ^https://d-love\.net/novel/ tag //a[contains(@href,'/tag/') and not(contains(@href,'/update/'))] author //a[contains(@href,'/user/')] injectStyle exampleUrl last update: 2020-09-12T22:35:27+09:00
-
nanos の小説部分 2020-09-12T22:17:40+09:00
pageElement //div[@id='layout']/text()|//div[@id='layout']/*[not(self::center)] title //title waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //div[@id='layout']//a[contains(@href,'/novel/') and @accesskey='#'] url ^https?://nanos\.jp/[^/]+/novel/ tag author injectStyle exampleUrl http://nanos.jp/suzukiakane/novel/2/?ParentDataID=2 http://nanos.jp/suzukiakane/novel/2/4/ last update: 2020-09-12T22:17:40+09:00
-
IndieGamesJp.dev 2020-09-11T01:15:19+09:00
pageElement //div[@class='entry-inner']/*[not(contains(@class,'addtoany_share_save_container')) and not(self::figure) and not(self::nav) and not(contains(@class,'has-text-align-center'))] title //article/div[contains(@class,'post-inner')]/h1[contains(@class,'post-title')] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink //a[@class='nextpostslink'] url ^https://indiegamesjp\.dev/\?p= tag //p[@class='post-tags']/a[@rel='tag' and contains(@href,'/?tag=')] author //div[@class='author-bio']/p[@class='bio-name'] injectStyle exampleUrl last update: 2020-09-11T01:15:19+09:00
-
wizLanScope 2020-09-05T16:16:06+09:00
pageElement //div[contains(@class,'single-article__content')] title //h1[contains(@class,'single-article__title')] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://www\.lanscope\.jp/[^/]*/ tag //ul[contains(@class,'c-tag-list')]/li/a[contains(@href,'/tags/')] author //section[@class='single-writer']//h2[contains(@class,'single-writer__title')] injectStyle exampleUrl https://www.lanscope.jp/trend/16983/ last update: 2020-09-05T16:16:06+09:00
-
topics.nintendo 2020-09-05T04:49:57+09:00
pageElement //div[@class='topics-articleBody'] title //h1[@class='topics-articleHead__main'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://topics\.nintendo\.co\.jp/article/ tag author //div[@class='topics-authorArea__text']/text() injectStyle exampleUrl https://topics.nintendo.co.jp/article/e115dc48-07de-4a31-aed1-ad65b3cbeb64 last update: 2020-09-05T04:49:57+09:00
-
ハーメルン携帯版 2020-08-30T23:14:24+09:00
pageElement //body/text()|//body/*[not(self::table) and not(self::center) and not(self::img) and not(self::font)] title //table//tbody/tr[@bgcolor and not(@bgcolor='white')]//center waitSecondInHeadless subtitle //body/center[not(child::*)] nextButton firstPageLink //a[contains(@href,'/?mode=ss_view') and preceding-sibling::hr] firstPageButton memo isNeedHeadless nextLink //a[contains(@href,'/?mode=ss_view') and @accesskey='1'] url ^https?://m\.syosetu\.org/\?mode=ss tag author injectStyle exampleUrl http://m.syosetu.org/?mode=ss_view&nid=232554&volume=2&guid=ON last update: 2020-08-30T23:14:24+09:00
-
coinpost 2020-08-30T13:26:07+09:00
pageElement //div[@id='the-content'] title //h1[@class='entry-title'] waitSecondInHeadless subtitle nextButton firstPageLink firstPageButton memo isNeedHeadless nextLink url ^https://coinpost\.jp/\?p= tag //div[@id='breadcrumb']/div[not(@class='breadcrumb-home')]//a[contains(@href,'/?cat=')] author //p[@class='post-meta']/span[@class='post-auther'] injectStyle exampleUrl https://coinpost.jp/?p=178852 last update: 2020-08-30T13:26:07+09:00
-
ことせかい topics 2020-08-26T15:48:20+09:00
pageElement //section[@class='autopagerize_page_element'] title //title waitSecondInHeadless subtitle //section[@class='main_content']/h3 nextButton firstPageLink //section[@id='main_content']/ul/li/a[contains(@href,'.html')] firstPageButton memo isNeedHeadless nextLink //a[@rel='NEXT'] url ^https://limura\.github\.io/NovelSpeaker/topics tag author injectStyle exampleUrl https://limura.github.io/NovelSpeaker/topics/00001.html last update: 2020-08-26T15:48:20+09:00
-
魔法のiらんど 2020-08-13T19:37:10+09:00
title //main[contains(@class,'main')]//div[contains(@class,'infoPrimary')]/h1|//section[contains(@class,'content')]//h1 pageElement //section[contains(@class,'content')]/div subtitle //section[contains(@class,'content')]//div[contains(@class,'chapters')]/h2 firstPageLink //a[contains(@href,'/works/') and contains(@href,'#')] isNeedHeadless true nextLink //div[contains(@class,'next')]//nav[contains(@class,'next')]/a[contains(@href,'/works/') and contains(@href,'#')] tag //ul[contains(@class,'tagLabels')]/li/a[contains(@href,'/search?situations=')] url ^https://maho\.jp/works/\d+ exampleUrl https://maho.jp/works/15591074771453176453 author //div[contains(@class,'WorkAuthorProfile')]//div[contains(@class,'profile')]/a[contains(@href,'/users/')]/h3 last update: 2020-08-13T19:37:55+09:00
-
TABI LABO 2020-07-13T02:00:03+09:00
title //article/div[@class='contents-container']/h1 pageElement //article//div[@class='contents'] tag //div[contains(@class,'article-footer')]//li/a[@data-id='article_tag' and contains(@href,'/tag/')] url ^https://tabi-labo\.com/\d+/ exampleUrl https://tabi-labo.com/296235/ubereats-interview author //div[@class='author-box']/text() last update: 2020-07-13T02:01:14+09:00
-
FRONTROW 2020-06-20T10:06:23+09:00
pageElement //div[@class='content-body']/div[@class='content-summary']|//div[@class='content-body']/div[contains(@class,'content-body-body')]/*[self::p or self::h2[@class='article-heading'] or self::div[@class='quotebox']] title //h1[@class='content-title']/a subtitle firstPageLink memo nextLink url ^https://front-row\.jp/_ct/[0-9]+ tag //div[@class='content-tags']/a[contains(@href,'/_tags/')] author exampleUrl https://front-row.jp/_ct/17370720 last update: 2020-06-20T10:06:23+09:00
-
SPOT 2020-06-10T13:42:42+09:00
pageElement //div[@class='entry_main']/*[not(child::img) and not(self::div[@id='toc_container']) and not(child::style)] title //h1[@class='content_title'] subtitle firstPageLink memo nextLink url ^https://travel\.spot-app\.jp/[^/]+/ tag //div[@class='tag_list']//a author //div[@class='writer_info']/a[@class='writer_name'][1] exampleUrl https://travel.spot-app.jp/minamimachida/ last update: 2020-06-10T13:42:42+09:00
-
logmi 2020-06-02T17:58:16+09:00
title //h1[@class='article-header__title'] pageElement //article[@class='article-body']/section[@class='article-section']/*[not(child::*[@role='img']) and not(self::aside) and not(self::div[@class='article-timestamp']) and not(child::bookmark-button) and not(child::a[contains(@href,'/article_images/')])] subtitle //h2[@class='article-header__subtitle'] nextLink //aside[@class='article-aside']//div[contains(@class,'progress')]/a[contains(@href,'/articles/') and not(contains(@class,'is-disabled')) and preceding-sibling::div[contains(@class,'is-active')]] tag //div[@class='tag-list']/a[@class='tag'] url ^https://logmi\.jp/[^/]+/articles/ exampleUrl https://logmi.jp/tech/articles/322911 author //div[@class='speaker-item__name'] last update: 2020-06-11T04:18:21+09:00
-
REUTERS 2020-05-22T18:21:49+09:00
title //h1[contains(@class,'Headline')] pageElement //div[contains(@class,'ArticleBodyWrapper')]/*[contains(@class,'ArticleBody-para')] url ^https://jp\.reuters\.com/article/ exampleUrl https://jp.reuters.com/article/health-coronavirus-japan-frontline-int-idJPKBN22Y0ER author //div[@class='ArticleBodyWrapper']//div[contains(@class,'ArticleBody-byline')]//span[contains(@class,'Byline-author')] last update: 2020-10-22T20:36:33+09:00
-
あかり電化.net 2020-05-18T21:49:05+09:00
pageElement //div[contains(@class,'entry-content') and not(contains(@class,'under-entry-content'))] author title //h1[contains(@class,'entry-title') and @itemprop='headline'] firstPageLink tag exampleUrl https://akaridenka.net/%e3%81%82%e3%82%8a%e3%81%b5%e3%82%8c%e3%81%9f%e8%81%b7%e6%a5%ad%e3%81%a7%e4%b8%96%e7%95%8c%e6%9c%80%e5%bc%b7%e3%80%80%e6%94%be%e9%80%81%e9%96%8b%e5%a7%8b/ subtitle memo url https://akaridenka\.net/[^/]+/ nextLink last update: 2020-05-18T21:49:05+09:00
-
スペースコロニーの小説部分 2020-05-16T08:20:10+09:00
pageElement //div[@class='text'] author title //title firstPageLink tag exampleUrl http://esupa.xrea.jp/dq/1000000/ subtitle memo url ^https?://esupa\.xrea.jp/[^/]+/[^/]+/ nextLink //div[@class='link']/div[@class='new']/a last update: 2020-05-16T08:20:10+09:00