Merge branch 'movixcorp:main' into main

This commit is contained in:
BARTHES Mathéo 2026-06-13 17:06:36 +02:00 committed by GitHub
commit 7d2e24b4ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 15 additions and 6 deletions

View file

@ -116,6 +116,7 @@ async function setupRules() {
"movix.cloud",
"movix.tax",
"movix.club",
"movix.golf",
],
resourceTypes: [
"xmlhttprequest",

View file

@ -43,7 +43,9 @@
"*://movix.tax/*",
"*://*.movix.tax/*",
"*://movix.club/*",
"*://*.movix.club/*"
"*://*.movix.club/*",
"*://movix.golf/*",
"*://*.movix.golf/*"
]
},
"web_accessible_resources": [

View file

@ -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"/>

View file

@ -122,6 +122,7 @@ async function setupRules() {
"movix.cloud",
"movix.tax",
"movix.club",
"movix.golf",
],
resourceTypes: [
"xmlhttprequest",

View file

@ -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"/>

View file

@ -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(/\/$/, "");
}