Created a Google Extension Plugin
This article was originally published on bmf-tech.com . When I wanted to search in English on Google, I used bookmarks to access it, but I thought it would be convenient to do it with a plugin, so I created one. This plugin might be somewhat useful for niche users who hide the default bookmarks and use a plugin called Bookolio (which makes bookmarks easier to see) ← me. Environment Google Chrome JavaScript Specifications There are various types of plugins, but what I am creating this time is this: When you click the plugin icon, it simply opens the English version of Google in a new tab. Since it's super simple, there is room for improvement in the specifications. () Preparation First, create the folder and files. └── search_by_english ├── background.js ├── icons │ ├── icon128.png │ ├── icon16.png │ └── icon48.png └── manifest.json Please prepare the icons as needed. The background.js is the JavaScript that runs in the background. For more details, please refer to the Developer's Guide
Continue reading on Dev.to JavaScript
Opens in a new tab


