Category: Uncategorized
-
How I solved “Unchecked runtime.lastError” Error
I developed Edge extension and sideload it. But there was an error. How I solved the error? I just added “return true;” at the end of the content script code to be injected. ChatGPT says the AddListener is not an ansync method, so this solution may not work. But it worked! I’m happy. I need…
-
How to Inject a Content Script from an Extension to Browser tab (Part2)
In the previous post, I created two files, HTML and JavaScript to show popup dialog from an Edge extension icon and to add a button event. Now, let’s go on next step with following the instructions below.Tutorial part 2: Use JavaScript to insert an image in the webpage 3. Expose the image as a resource…
-
How to Inject a Content Script from an Extension to Browser tab (Part1)
I learned how to create the simplest Edge Extension with following the tutorial. It doesn’t have JavaScript file to do something. Tutorial part 1: Display an image in a pop-up In this post, I will create the extension with a JavaScript.I will follow the tutorial below. Through this tutorial, I understand the basic concept of…
-
How to Create and Install Extension to Edge
In the previous post, I introduced how to create the manifest.json from installing the Visual Studio Code to required key for the manifest file. I’m following the instructions below. Tutorial part 1: Display an image in a pop-upPrevious post: How to Create manifest.json for Edge Extensions In this post, I will introduce how to create…
-
How to Create manifest.json for Edge Extensions
I learned about the concept of the Edge Extension in the previous post.Concept of the Edge extension Now, Let’s develop the simplest Edge Extension for beginner with me!I follow the instruction below. There is no JavaScript file in this extension. Tutorial part 1: Display an image in a pop-up Step 0. Setup the development environment…
-
How to Add Custom Actions before Install in Windows Installer
With Visual Studio Installer Project, you can add Custom Actions, which are custom scripts that can be executed during the installation process. Windows Installer – Using Custom Actions However, in the Custom Actions View of Visual Studio Installer Project, there are only four predefined stages: Install, Commit, Rollback and Uninstall. It’s not very clear which…
-
Things Microsoft Edge Extensions developers should know
References Extension concepts and architecture Browser tabs are isolated threads Each tab handles one GET request Extension works like a Remote Server
-
How to Send SSH Public Key to Windows Server
For those wondering, “I’ve created a public and private key on the SSH client side, but how do I transfer the public key”? Saving the SSH public key to a USB memory stick and transferring it to the server is perfectly fine. But if you really want to try sending the key over the network,…
-
How to Install OpenSSH Server on Windows7 in Offline
I needed to install OpenSSH Server on an old Windows 7 32-bit computer that I use for work. Here, I’ll document the steps I followed. Download OpenSSH Go to GitHub and Download Go to GitHub PowerShell/OpenSSH and download the proper version of OpenSSH. Copy the zip file to Windows 7 Copy the downloaded zip file…