We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1130d commit 4106d62Copy full SHA for 4106d62
ophirofox.user.js
@@ -1,5 +1,5 @@
1
// ==UserScript==
2
-// @version 2.5.250603.2006
+// @version 2.5.250607.1756
3
// @author Write
4
// @name OphirofoxScript
5
// @grant GM.getValue
@@ -2513,8 +2513,16 @@
2513
return false;
2514
};
2515
2516
+ const isFreeOnAccountCreation = () => {
2517
+ const element = document.querySelector('div[class*="registerwall-wrapper"]');
2518
+ if (element) {
2519
+ return true;
2520
+ }
2521
+ return false;
2522
+ };
2523
+
2524
async function onLoad() {
- if (!isPremium()) return;
2525
+ if (!isPremium() && !isFreeOnAccountCreation()) return;
2526
document.querySelector("h1").after(await ophirofoxEuropresseLink(extractKeywords()));
2527
}
2528
0 commit comments