How to add a popup for chrome extension?

Hello:)
To add a popup html to a chrome extension you will need to add the following code to the manifest.json file.

"action": {
    "default_popup": "popup.html"
  },
"content_scripts": [
      {
          "matches": [
            "<all_urls>"
          ],
          "js": ["popup.js"],
          "css": ["popup.css"]
      }
  ]

Then make the _popup.html file__popup.css_, and the _popup.js _files.