summaryrefslogtreecommitdiff
path: root/manifest.json
blob: 16cf9589ce3e4d423e67a3ecca3d92e73aa3bdbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "manifest_version": 2,
  "name": "Tab rename",
  "version": "1.0",
  "description": "Rename tabs from the context menu",
  "developer": {
    "name": "Christian Segundo",
    "url": "https://git.segundo.io/moz-tab-rename/"
  },
  "homepage_url": "https://git.segundo.io/moz-tab-rename/",
  "permissions": [
    "activeTab",
    "menus",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "moz-tab-rename@git.segundo.io"
    }
  },
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png",
    "512": "icons/icon-512.png",
    "850": "icons/icon-850.png"
  }
}