Instructions
- 1Create a folder for your extension on your computer. This folder will hold the code for your extension, split across multiple files, as well as any images or other objects the code refers to.
- 2Familiarize yourself with the programming languages used by Chrome extensions. Each extension has a central "manifest file," always called "manifest.json," that provides important information and refers to other code files; this file is always written in JavaScript Object Notation, or JSON, a simple language based on JavaScript. Other files may include HTML, CSS, and JavaScript code.
- 3Refer to Google's site for detailed instructions on Chrome development. Google maintains a tutorial at Code.google.com/chrome/extensions/getstarted.html that will walk you through creating a very simple extension; after this, click "Overview" on the left side of the page to read a further introduction to the concepts behind Chrome development. Once you've practiced creating extensions, you can refer to the in-depth "Developer's Guide," also accessible from the left side of the page, for all the information you need.
- 1