comparison manifest.json.in @ 23:4704e5216412

Create menus on-the-fly Refactor and eliminate the window tracking code by using the onShown/onHidden events available in Firefox 60 in order to create menu entries on-the-fly. Switch from the Firefox-specific contextMenu to the menu API.
author Guido Berhoerster <guido+tab-mover@berhoerster.name>
date Sun, 25 Nov 2018 13:27:47 +0100
parents e4391e12b799
children
comparison
equal deleted inserted replaced
22:70de81c7c512 23:4704e5216412
6 "author": "Guido Berhoerster", 6 "author": "Guido Berhoerster",
7 "homepage_url": "https://code.guido-berhoerster.org/addons/firefox-addons/tab-mover/", 7 "homepage_url": "https://code.guido-berhoerster.org/addons/firefox-addons/tab-mover/",
8 "applications": { 8 "applications": {
9 "gecko": { 9 "gecko": {
10 "id": "tab-mover@code.guido-berhoerster.org", 10 "id": "tab-mover@code.guido-berhoerster.org",
11 "strict_min_version": "51.0" 11 "strict_min_version": "60.0"
12 } 12 }
13 }, 13 },
14 "icons": { 14 "icons": {
15 "48": "icons/tab-mover-48.png", 15 "48": "icons/tab-mover-48.png",
16 "96": "icons/tab-mover-96.png" 16 "96": "icons/tab-mover-96.png"
17 }, 17 },
18 "default_locale": "en", 18 "default_locale": "en",
19 "permissions": [ 19 "permissions": [
20 "contextMenus", 20 "menus",
21 "tabs" 21 "tabs"
22 ], 22 ],
23 "background": { 23 "background": {
24 "scripts": [ 24 "scripts": [
25 "background.js" 25 "background.js"