forked from mjaschen/strava-helper-firefox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"title": "Strava Helper",
"name": "strava-helper",
"version": "0.2.3",
"description": "Some tweaks for the Strava website",
"main": "index.js",
"author": "Marcus Jaschen",
"engines": {
"firefox": ">=38.0a1",
"fennec": ">=38.0a1"
},
"license": "MIT",
"preferences": [{
"name": "addKudosButton",
"title": "Add 'Kudos to all' button",
"description": "Adds a button which gives kudos to all visible activities",
"type": "bool",
"value": true
}, {
"name": "removeClutter",
"title": "Remove clutter",
"description": "Removes social media links and premium incentives",
"type": "bool",
"value": true
}, {
"name": "addVeloViewerLinks",
"title": "Add links to VeloViewer",
"description": "Adds a link to the VeloViewer activity page and to VeloViewer.com",
"type": "bool",
"value": true
}, {
"name": "fixateNavBar",
"title": "Navigation always visible",
"description": "Pin the main navigation bar to the top, making it always visible",
"type": "bool",
"value": true
}, {
"name": "addGlobalHeatMapLink",
"title": "Add a link to the global heat map",
"description": "Adds a link to the global heat map in the 'Discover' menu",
"type": "bool",
"value": true
}, {
"name": "enableCustomLeaderboardType",
"title": "Change the default segement leaderboard filter",
"description": "Changes the segment leaderboard to the filter selected below",
"type": "bool",
"value": true
}, {
"name": "leaderboardType",
"type": "menulist",
"title": "Default segment leaderboard filter",
"value": "my_results",
"options": [
{
"value": "overall",
"label": "All-time"
},
{
"value": "current_year",
"label": "This Year"
},
{
"value": "men",
"label": "Men"
},
{
"value": "women",
"label": "Women"
},
{
"value": "following",
"label": "I'm following"
},
{
"value": "my_results",
"label": "My Results"
}]
}, {
"name": "autoloadActivities",
"title": "Automatically load more activities",
"description": "Load more activities when the bottom of the activity feed is reached",
"type": "bool",
"value": true
}]
}