Shivanshu Semwaltotoro.hashnode.dev·Oct 30, 2024A Beginner's Guide to Installing Userscripts in Your Web BrowserUserscripts are uses to run javascript on top of a website to automate some repetitive task or add or remove elements, and many other tasks like web scraping. Userscript manager To run userscripts, you need a browser extension that runs userscript ca...DiscussUserScript
Sakshi from KushoAIforSoftwareDeepDivessoftware-deep-dives.hashnode.dev·Oct 14, 2024What is Cross-Browser Testing and Why is it Needed?According to the UN(United Nations) as of 2023, there are approximately 8 billion people on Earth. Now, it’s logical to think that these people all differ in various ways, culturally, physically, and economically. They all have different choices in t...Discusscross browser testing
Vehbi Sinan Tunaliogluthenegation.hashnode.dev·Aug 26, 2024Web Browser Extension Workshop - Part 3This is the third part of the series of blog posts about creating a Web browser. In this part, we will change the extension icon based on the OpenGraph information parsed from the Webpage on the active tab. We will also refactor the code by encoding ...DiscussWeb Browser Extension WorkshopWeb Development
Vehbi Sinan Tunaliogluthenegation.hashnode.dev·Aug 24, 2024Web Browser Extension Workshop - Part 1I am starting a short series of blog posts about creating a Web browser extension using WXT. In this first part, we will set up the development environment and try to read the content of the navigated Webpage or Webpage on the active tab. Motivation ...DiscussWeb Browser Extension Workshopwxt
Ayushi Majiayushi2003.hashnode.dev·Jun 10, 2024Web Browsers:In today's digital age, web browsers have become an indispensable tool for accessing information, connecting with others, and conducting business. But have you ever stopped to consider how these ubiquitous applications work, or how they have evolved ...Discussapplesafari
Shivani Guptashivani914.hashnode.dev·May 23, 2024Exploring the World of Asynchronous JavaScript.Execution of JavaScript Code: Parsing: The JavaScript engine parses the code, breaking it down into tokens and constructing an Abstract Syntax Tree (AST). Compilation and Execution: After parsing, the code is compiled into executable instructions, ...Discuss·10 likesJavaScript
PlugXR3dvisualization.hashnode.dev·Apr 29, 2024Create Augmented Reality on the Web No App RequiredAugmented Reality (AR) on the web refers to the integration of AR technology into web-based applications and experiences. Traditionally, AR experiences were confined to standalone apps or platforms, but advancements in web technologies, such as WebXR...Discussaugmented reality on web
md arbaz alamarbaz.hashnode.dev·Feb 12, 2024Web Browser APIWeb API is a kind of power that allow developers to interact with various browser features, manipulate the Document Object Model (DOM), and perform tasks related to user interface, networking, storage, and more. DOM API (Document Object Model): The D...DiscussJavaScript
Saurav Bhartisauravbharti021.hashnode.dev·Feb 12, 2024Asynchronous nature of JavascriptKey points on how Javascript code work? Whenever a javascript function gets called it goes into call stack and depending on what kind of function it is, it gets processed further. The concept that call stack follows is Last In First Out (LIFO), so ...Discuss·29 readsJavaScript
G Hemanth kumaronepiece.hashnode.dev·Feb 11, 2024JavaScript Execution & Asynchronicity.JavaScript is a crucial component in modern web development, enabling dynamic and interactive experiences. Understanding how JavaScript code gets executed, its asynchronous nature, event loop mechanism, callbacks, and interaction with browser APIs is...Discuss·30 readsJavaScript