mirror of
https://github.com/movixcorp/MovixOpenSource.git
synced 2026-07-27 09:12:07 +00:00
Merge branch 'movixcorp:main' into main
This commit is contained in:
commit
7d2e24b4ab
6 changed files with 15 additions and 6 deletions
|
|
@ -116,6 +116,7 @@ async function setupRules() {
|
|||
"movix.cloud",
|
||||
"movix.tax",
|
||||
"movix.club",
|
||||
"movix.golf",
|
||||
],
|
||||
resourceTypes: [
|
||||
"xmlhttprequest",
|
||||
|
|
|
|||
|
|
@ -43,7 +43,9 @@
|
|||
"*://movix.tax/*",
|
||||
"*://*.movix.tax/*",
|
||||
"*://movix.club/*",
|
||||
"*://*.movix.club/*"
|
||||
"*://*.movix.club/*",
|
||||
"*://movix.golf/*",
|
||||
"*://*.movix.golf/*"
|
||||
]
|
||||
},
|
||||
"web_accessible_resources": [
|
||||
|
|
|
|||
|
|
@ -424,7 +424,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div style="margin-top: 12px; text-align: center;">
|
||||
<a href="https://movix.cloud/settings#extractions" target="_blank" style="color:#6366f1;text-decoration:none;font-size:12px;font-weight:600;">
|
||||
<a href="https://movix.golf/settings#extractions" target="_blank" style="color:#6366f1;text-decoration:none;font-size:12px;font-weight:600;">
|
||||
Configurer →
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -456,7 +456,7 @@
|
|||
|
||||
<!-- Footer -->
|
||||
<div class="footer fade-in fade-in-delay-6">
|
||||
<a href="https://movix.cloud" target="_blank">
|
||||
<a href="https://movix.golf" target="_blank">
|
||||
Ouvrir Movix
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/>
|
||||
|
|
|
|||
|
|
@ -122,6 +122,7 @@ async function setupRules() {
|
|||
"movix.cloud",
|
||||
"movix.tax",
|
||||
"movix.club",
|
||||
"movix.golf",
|
||||
],
|
||||
resourceTypes: [
|
||||
"xmlhttprequest",
|
||||
|
|
|
|||
|
|
@ -424,7 +424,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div style="margin-top: 12px; text-align: center;">
|
||||
<a href="https://movix.cloud/settings#extractions" target="_blank" style="color:#6366f1;text-decoration:none;font-size:12px;font-weight:600;">
|
||||
<a href="https://movix.golf/settings#extractions" target="_blank" style="color:#6366f1;text-decoration:none;font-size:12px;font-weight:600;">
|
||||
Configurer →
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -456,7 +456,7 @@
|
|||
|
||||
<!-- Footer -->
|
||||
<div class="footer fade-in fade-in-delay-6">
|
||||
<a href="https://movix.cloud" target="_blank">
|
||||
<a href="https://movix.golf" target="_blank">
|
||||
Ouvrir Movix
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/>
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@
|
|||
// @match https://*.movix.cloud/*
|
||||
// @match https://movix.tax/*
|
||||
// @match https://*.movix.tax/*
|
||||
// @match https://movix.golf/*
|
||||
// @match https://*.movix.golf/*
|
||||
// @grant GM_xmlhttpRequest
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
|
|
@ -2539,6 +2541,7 @@
|
|||
"movix.club",
|
||||
"movix.cloud",
|
||||
"movix.tax",
|
||||
"movix.golf",
|
||||
],
|
||||
resourceTypes: [
|
||||
"xmlhttprequest",
|
||||
|
|
@ -2933,7 +2936,9 @@
|
|||
currentHostname === "movix.cloud" ||
|
||||
currentHostname.endsWith(".movix.cloud") ||
|
||||
currentHostname === "movix.tax" ||
|
||||
currentHostname.endsWith(".movix.tax")
|
||||
currentHostname.endsWith(".movix.tax") ||
|
||||
currentHostname === "movix.golf" ||
|
||||
currentHostname.endsWith(".movix.golf")
|
||||
) {
|
||||
return (currentOrigin || "https://movix.cash").replace(/\/$/, "");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue