forked from mozilla/lightbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.27 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
{
"name": "lightbeam",
"fullName": "Lightbeam",
"description": "Lightbeam is a Firefox add-on that allows you to see the third parties that are collecting information about your browsing activity, with and without your consent. Using interactive visualizations, Lightbeam shows you the relationships between these third parties and the sites you visit.",
"author": "Mozilla Foundation",
"license": "MPL 2.0",
"version": "1.2.1",
"id": "jid1-F9UJ2thwoAm5gQ",
"permissions": {
"private-browsing": true
},
"preferences": [
{ "name": "defaultVisualization",
"title": "Default visualization",
"description": "Graph or list",
"type": "menulist",
"value": "graph",
"options": [
{ "value": "graph", "label": "Graph" },
{ "value": "list", "label": "List" }
]
},
{ "name": "defaultFilter",
"title": "Default filter",
"description": "Time period",
"type": "menulist",
"value": "daily",
"options": [
{ "value": "daily", "label": "Daily" },
{ "value": "weekly", "label": "Weekly" },
{ "value": "recent", "label": "Recent" },
{ "value": "last10sites", "label": "Last 10 sites" }
]
}
]
}