this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove www from domain for DID check

+2 -1
+2 -1
content.js
··· 1 1 function getDomainName() { 2 - return window.location.hostname 2 + const hostname = window.location.hostname 3 + return hostname.replace(/^www\./, "") 3 4 } 4 5 5 6 async function checkForDID(domain) {