this is my manifest.json file
{ "name": "My First Extension", "version": "1.0", "description": "The first extension that I made.", "background_page": "background.html", "page_action": { "default_icon": "icon.png" }, "permissions" : [ "tabs" ] }
This is background.html
<html> <head> <script> </script> </head> </html>
when I click on the page action icon, I want to redirect the page to Bing.com, but this click event does not work for me.
thanks
source share