Skip to content

Commit de939cb

Browse files
committedFeb 11, 2024·
Update coomer.su and kemono.su
1 parent e947a0a commit de939cb

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
## [0.9.3]
3+
4+
- Update coomer.su and kemono.su
5+
26
## [0.9.2]
37

48
- Ignore create button on stash-box

‎metadata.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ export default {
1010
license: 'MIT',
1111
match: [
1212
"*://adultanime.dbsearch.net/*",
13-
"*://coomer.party/*",
13+
"*://coomer.su/*",
1414
"*://erommdtube.com/*",
1515
"*://fansdb.cc/*",
1616
"*://fansdb.xyz/*",
1717
"*://gayeroticvideoindex.com/*",
18-
"*://kemono.party/*",
18+
"*://kemono.su/*",
1919
"*://metadataapi.net/*",
2020
"*://onlyfans.com/*",
2121
"*://oreno3d.com/*",

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stash-checker",
33
"description": "Add checkmarks to scenes/performers on porn websites that are present in your own Stash instance.",
4-
"version": "0.9.0",
4+
"version": "0.9.3",
55
"author": {
66
"name": "timo95",
77
"email": "24251362+timo95@users.noreply.github.com"

‎src/index.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,11 @@ import {Target} from "./dataTypes";
5959
check(Target.Scene, "h2.main__list-title", {color: color, titleSelector: null});
6060
break;
6161
}
62-
case "kemono.party":
62+
case "coomer.su":
63+
case "kemono.su":
6364
check(Target.Scene, "h1.post__title", {currentSite: true, titleSelector: null});
6465
check(Target.Scene, ".post-card > a[href*='/post/']", {titleSelector: null});
6566
break;
66-
case "coomer.party":
67-
check(Target.Scene, "h1.post__title", {currentSite: true, titleSelector: null});
68-
check(Target.Scene, ".post-card h2 > a[href*='/post/']", {titleSelector: null});
69-
break;
7067
case "adultanime.dbsearch.net":
7168
if (document.querySelector("article > section[id='info-table']") !== null) {
7269
check(Target.Scene, "div[id='main-inner'] > article > h2", {

0 commit comments

Comments
 (0)
Please sign in to comment.