display_anime_names: merge two regexes
This commit is contained in:
parent
291fe94aea
commit
3edc211c41
|
@ -5,7 +5,7 @@
|
||||||
// @match https://animebytes.tv/company.php
|
// @match https://animebytes.tv/company.php
|
||||||
// @match https://animebytes.tv/
|
// @match https://animebytes.tv/
|
||||||
// @grant none
|
// @grant none
|
||||||
// @version 1.3
|
// @version 1.4
|
||||||
// @author Lukáš Kucharczyk
|
// @author Lukáš Kucharczyk
|
||||||
// @description Displays anime titles underneath posters on the collage page.
|
// @description Displays anime titles underneath posters on the collage page.
|
||||||
// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/animebytes_display_anime_names/display_anime_names.js
|
// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/animebytes_display_anime_names/display_anime_names.js
|
||||||
|
@ -14,8 +14,7 @@
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
let url_selectors = {
|
let url_selectors = {
|
||||||
"^(https?://)?animebytes.tv/?$": ".aot_inner",
|
"^(https?://)?animebytes.tv/?$": ".aot_inner",
|
||||||
"^(https?://)?animebytes.tv/collage.php": "#collage_table tbody tr td",
|
"^(https?://)?animebytes.tv/(collage|company).php": "#collage_table tbody tr td"
|
||||||
"^(https?://)?animebytes.tv/company.php": "#collage_table tbody tr td"
|
|
||||||
}
|
}
|
||||||
let selectors_as_array = Object.entries(url_selectors)
|
let selectors_as_array = Object.entries(url_selectors)
|
||||||
let selector = selectors_as_array.filter(([key, value]) => {
|
let selector = selectors_as_array.filter(([key, value]) => {
|
||||||
|
|
Loading…
Reference in New Issue