Translated constants

pull/73/head
MillenniumEarl 2021-02-14 10:22:26 +01:00
parent c6bf753f29
commit 3737704ffb
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
module.exports = Object.freeze({ export const selectors = {
GT_IMAGES: "img:not([title])[data-src^=\"https://attachments.f95zone.to\"][data-url=\"\"]", GT_IMAGES: "img:not([title])[data-src^=\"https://attachments.f95zone.to\"][data-url=\"\"]",
GT_TAGS: "a.tagItem", GT_TAGS: "a.tagItem",
GT_TITLE: "h1.p-title-value", GT_TITLE: "h1.p-title-value",
@ -18,4 +18,4 @@ module.exports = Object.freeze({
UD_AVATAR_PIC: "a[href=\"/account/\"] > span.avatar > img[class^=\"avatar\"]", UD_AVATAR_PIC: "a[href=\"/account/\"] > span.avatar > img[class^=\"avatar\"]",
LOGIN_MESSAGE_ERROR: "div.blockMessage.blockMessage--error.blockMessage--iconic", LOGIN_MESSAGE_ERROR: "div.blockMessage.blockMessage--error.blockMessage--iconic",
LU_TAGS_SCRIPT: "script:contains('latestUpdates')", LU_TAGS_SCRIPT: "script:contains('latestUpdates')",
}); };

View File

@ -1,7 +1,7 @@
module.exports = Object.freeze({ export const urls = {
F95_BASE_URL: "https://f95zone.to", F95_BASE_URL: "https://f95zone.to",
F95_SEARCH_URL: "https://f95zone.to/search/?type=post", F95_SEARCH_URL: "https://f95zone.to/search/?type=post",
F95_LATEST_UPDATES: "https://f95zone.to/latest", F95_LATEST_UPDATES: "https://f95zone.to/latest",
F95_LOGIN_URL: "https://f95zone.to/login/login", F95_LOGIN_URL: "https://f95zone.to/login/login",
F95_WATCHED_THREADS: "https://f95zone.to/watched/threads", F95_WATCHED_THREADS: "https://f95zone.to/watched/threads",
}); };