Skip to content

Instantly share code, notes, and snippets.

@ganeshjaiwal
Created September 3, 2020 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ganeshjaiwal/1f8baee9133c41a0bac98e1a41f7b039 to your computer and use it in GitHub Desktop.
Save ganeshjaiwal/1f8baee9133c41a0bac98e1a41f7b039 to your computer and use it in GitHub Desktop.
Browser action section in manifest file
/*
Add this to manifest file so user can see popup on browser action click.
*/
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "My First Extension",
"default_popup": "pages/popup/popup.html"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment