From 97c23961d2a970abe6460554e671a62aad680195 Mon Sep 17 00:00:00 2001 From: jebbs Date: Wed, 26 Sep 2018 16:07:55 +0800 Subject: [PATCH] update signitures --- scripts/content.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/content.js b/scripts/content.js index b3a76bd..f1d5ee7 100644 --- a/scripts/content.js +++ b/scripts/content.js @@ -55,6 +55,9 @@ extract(".list-item", ["a.title", "p.content"]) ### Extract multiple pages (1-10, interval 1) extract(".list-item", ["a.title", "p.content"],"http://sample.com/?pn=\${page}", 1, 10, 1) +### Extract multiple urls (list) +extract(".list-item", ["a.title", "p.content"],["http://sample.com/abc","http://sample.com/xyz"]) + ### Extract specified pages (1,3,5) extract(".list-item", ["a.title", "p.content"], "http://sample.com/?pn=\${page}", [1, 3, 5])