Creating a Chrome extension using Yarn

Creating a Chrome extension using Yarn involves several steps, including setting up the project structure, writing necessary configuration files, and coding the extension itself. Below is a basic guide to help you build a Chrome extension using Yarn: Step 1: Set Up Project Structure Initialize the project with Yarn: bash yarn init -y Install necessary…

Read More

Free Link Extractor Tool Online

This tool will extract link from any bulk text into line by line separated text, Free tool link here, Code: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Extract Links</title> </head> <body> <textarea id=”inputText” rows=”4″ cols=”50″></textarea><br> <button onclick=”extractLinks()”>Extract Links</button><br> <textarea id=”outputText” rows=”4″ cols=”50″ readonly></textarea> <script> function extractLinks() { var inputText = document.getElementById(“inputText”).value;…

Read More

Full Page Gmail Screenshot Conversation Downloading In Image Formats -without downloading any extra extension or software

Open developer tool CTRL + Shift + J Press Toggle Device Tool Bar Button (Ctrl + Shift +M) Change Dimensions To Responsive from dropdown. Increase Height Input Box to Value that full Screen Gmail conversation becomes visible in window Find Three Circles Button and Press Run Command or type (Ctrl + Shift + P )…

Read More