Skip to content

Commit a97a010

Browse files
committed
Update pvcep_rules.js
1 parent cbf73ee commit a97a010

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Picviewer CE+/pvcep_rules.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ var siteInfo = [
798798
name: "streamain",
799799
url: /^https:\/\/(streamain\.com\/|www\.reddit\.com\/)/,
800800
xhr: {
801-
url: "a[href^='https://streamain.com/'][href$='/watch']",
801+
url: /^https:\/\/streamain\.com\/.*\/watch$/,
802802
query: '#playbob-video'
803803
}
804804
},
@@ -1865,7 +1865,7 @@ var siteInfo = [
18651865
name: "behance",
18661866
url: /^https:\/\/www\.behance\.net/,
18671867
xhr: {
1868-
url: "a[href^='/gallery/']",
1868+
url: /^\/gallery\//,
18691869
query: "img[class^='ImageElement-image']"
18701870
},
18711871
getExtSrc: function() {
@@ -1879,14 +1879,14 @@ var siteInfo = [
18791879
name: "postimg host",
18801880
src: /^https:\/\/i\.postimg\.cc/,
18811881
xhr: {
1882-
url: "a[href^='https://postimg.cc/']",
1882+
url: /^https:\/\/postimg\.cc\//,
18831883
query: "#main-image"
18841884
}
18851885
},
18861886
{
18871887
name: "postimg Link",
18881888
xhr: {
1889-
url: "a[href^='https://postimg.cc/']",
1889+
url: /^https:\/\/postimg\.cc\//,
18901890
query: function(html, doc, url) {
18911891
if (url.indexOf("gallery") != -1) {
18921892
let urls = [];
@@ -1932,7 +1932,7 @@ var siteInfo = [
19321932
name: "Yupoo main",
19331933
url: /\byupoo\.com\//,
19341934
xhr: {
1935-
url: "a[href^='/albums/']",
1935+
url: /^\/albums\//,
19361936
query: "[data-type=photo]>img[data-src]",
19371937
}
19381938
},
@@ -1982,7 +1982,7 @@ var siteInfo = [
19821982
name: "anime-pictures",
19831983
url: /^https:\/\/anime\-pictures\.net\//,
19841984
xhr: {
1985-
url: "a[href^='/posts/']",
1985+
url: /^\/posts\//,
19861986
query: "a.icon-download"
19871987
}
19881988
}

0 commit comments

Comments
 (0)