Among the finest issues that ever occurred to t he person expertise of the net has been internet extensions. Browsers are highly effective however extensions convey a brand new stage of performance. Whether or not it is crypto wallets, media gamers, or different standard plugins, internet extensions have turn into important to day by day duties.
Engaged on MetaMask, I’m thrust right into a world of creating all the pieces Ethereum-centric work. A kind of functionalities is guaranteeing that .eth
domains resolve to ENS when enter to the deal with bar. Requests to https://vitalik.eth
naturally fail, since .eth
is not a natively supported prime stage area, so we have to intercept this errant request.
// Add an onErrorOccurred occasion through the browser.webRequest extension API browser.webRequest.onErrorOccurred.addListener((particulars) => { const { tabId, url } = particulars; const { hostname } = new URL(url); if(hostname.endsWith('.eth')) { // Redirect to wherever I need the person to go browser.tabs.replace(tabId, { url: `https://app.ens.domains/${hostname}}` }); } }, { urls:[`*://*.eth/*`], varieties: ['main_frame'], });
Net extensions present a browser.webRequest.onErrorOccurred
methodology that builders can plug into to hear for errant requests. This API does not catch 4**
and 5**
response errors. Within the case above, we search for .eth
hostnames and redirect to ENS.
You may make use of onErrorOccurred
for any variety of causes, however detecting customized hostnames is a superb one!
I’m an Impostor
That is the toughest factor I’ve ever needed to write, a lot much less admit to myself. I’ve written resignation letters from jobs I’ve cherished, I’ve ended relationships, I’ve failed at a number of duties, and let myself down in my life. All of these emotions had been very…
Facebook Open Graph META Tags
It is no secret that Fb has turn into a serious visitors driver for all sorts of internet sites. These days even giant companies steer customers towards their Fb pages as a substitute of the company web sites straight. And naturally there are Fb “Like” and “Advocate” widgets on each web site. One…
Add Site Screenshots for External Links Using MooTools Tooltips
Earlier than you ship your person to an unknown exterior web site, why not present them a screenshot of the positioning through a tooltip so they could preview the upcoming web page? This is how you are able to do simply that utilizing MooTools. The MooTools JavaScript Step one is to seize…