Bug 1564761 [wpt PR 17620] - Document::CheckComplete should be nop when called from...
[gecko.git] / browser / extensions / screenshots / manifest.json
blob1976768e247e7a3407d03460341a6aa23d834ca5
2   "manifest_version": 2,
3   "name": "Firefox Screenshots",
4   "version": "39.0.0",
5   "description": "__MSG_addonDescription__",
6   "author": "__MSG_addonAuthorsList__",
7   "homepage_url": "https://github.com/mozilla-services/screenshots",
8   "incognito": "spanning",
9   "applications": {
10     "gecko": {
11       "id": "screenshots@mozilla.org",
12       "strict_min_version": "57.0a1"
13     }
14   },
15   "default_locale": "en_US",
16   "background": {
17     "scripts": [
18       "build/buildSettings.js",
19       "background/startBackground.js"
20     ]
21   },
22   "commands": {
23     "take-screenshot": {
24       "suggested_key": {
25         "default": "Ctrl+Shift+S"
26       },
27       "description": "Open the Firefox Screenshots UI"
28     }
29   },
30   "content_scripts": [
31     {
32       "matches": ["https://screenshots.firefox.com/*"],
33       "js": [
34         "build/buildSettings.js",
35         "log.js",
36         "catcher.js",
37         "selector/callBackground.js",
38         "sitehelper.js"
39       ]
40     }
41   ],
42   "page_action": {
43     "browser_style": true,
44     "default_icon" : {
45       "32": "icons/icon-v2.svg"
46     },
47     "default_title": "__MSG_contextMenuLabel__",
48     "show_matches": ["<all_urls>", "about:reader*"],
49     "pinned": false
50   },
51   "icons": {
52     "32": "icons/icon-v2.svg"
53   },
54   "web_accessible_resources": [
55     "blank.html",
56     "icons/cancel.svg",
57     "icons/download.svg",
58     "icons/copy.svg",
59     "icons/icon-256.png",
60     "icons/back.svg",
61     "icons/back-highlight.svg",
62     "icons/help-16.svg",
63     "icons/menu-fullpage.svg",
64     "icons/menu-visible.svg",
65     "icons/menu-myshot.svg",
66     "icons/onboarding-1.png",
67     "icons/onboarding-2.png",
68     "icons/onboarding-3.png",
69     "icons/onboarding-4.png",
70     "icons/onboarding-5.png",
71     "icons/onboarding-6.png",
72     "icons/done.svg",
73     "icons/icon-welcome-face-without-eyes.svg"
74   ],
75   "permissions": [
76     "activeTab",
77     "downloads",
78     "tabs",
79     "storage",
80     "notifications",
81     "clipboardWrite",
82     "contextMenus",
83     "mozillaAddons",
84     "telemetry",
85     "<all_urls>",
86     "https://screenshots.firefox.com/",
87     "resource://pdf.js/",
88     "about:reader*"
89   ],
90   "experiment_apis": {
91     "screenshots": {
92       "schema": "experiments/screenshots/schema.json",
93       "parent": {
94         "scopes": ["addon_parent"],
95         "script": "experiments/screenshots/api.js",
96         "paths": [["experiments", "screenshots"]]
97       }
98     }
99   }