webextension installation fails

Asked 1 years ago, Updated 1 years ago, 115 views

Installing Webextension on Firefox Fails

about:debugging to load a temporary add-on and select manifest.json to display only There was an error during installation:Extension is invalid

What should I do?

manifest.json


{
    "manifest_version"—2,
    "name": "Beastify",
    "version" : 1.0,

    "description": "add a browser action icon to the toolbar. Click the button to choose a best. The active tab's body content is then replaced with a picture of the choosen best.",
    "icons": {
        "48": "icons/beasts-48.png"
    },

    "permissions": [
        "activeTab"
    ],

    "browser_action": {
        "default_icon": "icons/beasts-32.png",
        "default_title": "Beastify",
        "default_popup": "popup/choose_beast.html"
    },

    "web_accessible_resources":[
        "beasts/frog.jpg",
        "beasts/turtle.jpg",
        "beasts/snake.jpg"
    ]
}


javascript json firefox

2022-09-30 20:23

1 Answers

"version" is a string and "description" is up to 132 characters...


2022-09-30 20:23

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.