Debsourya Dattadebsourya-blogs.hashnode.dev·May 19, 2024WXT Extension: The Ultimate Framework for Building Web ExtensionsContext : For the last few months I have been working on Web extensions, creating web extensions is similar to developing websites but there you get some extra concepts of how web extensions work, how the content-scripts inject the scripts into the D...1 likewxt
Erioifpuderio.hashnode.dev·Apr 14, 2024在 Web Extension 中拦截请求最近在开发一个浏览器插件,有个需求需要拦截指定的请求,拿到响应结果进行储存。 在我印象中插件是有请求拦截相关 API 的,问了 GPT,他信誓旦旦地和我说,可以用 WebRequest: browser.webRequest.onBeforeRequest.addListener(details => { console.log('[REQUEST]', details) }, { urls: ['<all_urls>'], }); browser.webRequest.onCompl...Web Extensions
Harsh Ranawatharshranawat.hashnode.dev·Mar 4, 2024Mastering Web Browser Extension Development: A Step-by-Step GuideIntroduction: Web browser extensions empower users with customized browsing experiences and enhanced functionality. In this comprehensive guide, we'll walk through the entire process of building a web browser extension from scratch. We'll cover every...Web Development
Langford Kwabenalangfordk.hashnode.dev·Aug 13, 2022Chrome extensions every web developer must haveChrome extensions are handy tools that almost everyone who has a Chrome browser uses. These extensions can make it easier to perform tasks that normally require opening a new browser, performing a search, and clicking a few links and buttons. Aside f...1 like·42 readswebdev
Ismael Velascoismaelvelasco.dev·Aug 2, 20222. Green Mode Design: Implementation StrategiesIn the second of the Green Mode Design series, I will move from the general design concept outlined in Part 1 to a first proposal on how it may be implemented by the four key constituencies: devs, consumers, browser vendors, and web standards/specifi...135 readsGreen Mode Designgreen-web