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 ff0b045 commit 4b5240bCopy full SHA for 4b5240b
ophirofox/content_scripts/lobs.js
@@ -11,8 +11,16 @@ const isPremium = () => {
11
return false;
12
};
13
14
+const isFreeOnAccountCreation = () => {
15
+ const element = document.querySelector('div[class*="registerwall-wrapper"]');
16
+ if (element) {
17
+ return true;
18
+ }
19
+ return false;
20
+};
21
+
22
async function onLoad() {
- if (!isPremium()) return;
23
+ if (!isPremium() && !isFreeOnAccountCreation()) return;
24
document.querySelector("h1").after(await ophirofoxEuropresseLink(extractKeywords()));
25
}
26
0 commit comments