view manifest.json.in @ 3:f77dab12bb52

Add support for contextual identities Create new tab with the same contextual identity as the current tab and open the search results in newly created tab. Accessing the tab's cookieStoreId property requires the "cookies" permission.
author Guido Berhoerster <guido+cws@berhoerster.name>
date Thu, 31 Oct 2019 16:22:48 +0100
parents 2050741e9711
children
line wrap: on
line source

{
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "@VERSION@",
    "description": "__MSG_extensionDescription__",
    "author": "Guido Berhoerster",
    "homepage_url": "https://code.guido-berhoerster.org/addons/firefox-addons/context-web-search/",
    "default_locale": "en",
    "applications": {
        "gecko": {
            "id": "context-web-search@code.guido-berhoerster.org",
            "strict_min_version": "63.0"
        }
    },
    "icons": {
        "48": "icons/context-web-search-48.png",
        "96": "icons/context-web-search-96.png"
    },
    "permissions": [
        "menus",
        "search",
        "cookies"
    ],
    "background": {
        "scripts": [ "background.js" ]
    }
}