-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.4 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "devtools-auto-open",
"description": "Automatically opens Firefox Developer Tools when new tab / new window is opened.",
"version": "2.0.1",
"author": {
"name": "Dmitry Kulikov",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/dmitry-kulikov/firefox-devtools-auto-open/issues"
},
"engines": {
"firefox": "*"
},
"homepage": "https://github.com/dmitry-kulikov/firefox-devtools-auto-open",
"id": "[email protected]",
"keywords": [
"developer tools",
"devtools"
],
"license": "MIT",
"main": "lib/main.js",
"permissions": {
"private-browsing": true,
"multiprocess": true
},
"preferences": [
{
"name": "onTabReady",
"title": "On tab ready",
"description": "Open Developer Tools when the DOM for a tab's content is ready.",
"type": "bool",
"value": true
},
{
"name": "onTabOpen",
"title": "On tab open",
"description": "Open Developer Tools immediately when a new tab is opened (not recommended).",
"type": "bool",
"value": false
}
],
"repository": {
"type": "git",
"url": "https://github.com/dmitry-kulikov/firefox-devtools-auto-open.git"
},
"title": "DevTools Auto Open"
}