0

How can I update the manifest_version of my chrome extention?

{
  "manifest_version": 2,
  "name": "KillTeamSeller Mail",
  "description": "This is the official extension for KillTeamSeller Mail. With it, you can create random email addresses and use them on websites. Service created by KillTeamSeller.",
  "version": "1.0",
  "permissions": [
    "https://killteamseller.it/*",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Create email address - KillTeamSeller Mail"
  },
  "icons": {
    "128": "icon.png"
  }
}

Tried to change some code but nothing

0 Answers0