S
S
Stavr2022-01-06 18:19:39
Mozilla Firefox
Stavr, 2022-01-06 18:19:39

Mozilla firefox how to solve problem in manifest.json?

When adding a temporary extension to mozilla firefox, the problem is: Extension is invalid. Reading manifest: Property "description" is unsupported in Manifest Version 1.

manifest.json itself:

{
  "name": "Запускаем снежинки на любом сайте",
  "description": "Проект журнала Код",
  "version": "1.0",
  "manifest_version": 1,

  "permissions": ["activeTab", "scripting"],

  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/get_started16.png",
      "32": "/images/get_started32.png",
      "48": "/images/get_started48.png",
      "128": "/images/get_started128.png"
    }
  },

  "icons": {
    "16": "/images/get_started16.png",
    "32": "/images/get_started32.png",
    "48": "/images/get_started48.png",
    "128": "/images/get_started128.png"
  }
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
GrayHorse, 2022-01-07
@GrayHorse

Property "description" is unsupported in Manifest Version 1

"manifest_version": 1,
Well, use the 2nd version of the manifest.
The second is not the third.
The 1st version has not been relevant for ten years.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question