-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathschema-index.html
More file actions
118 lines (118 loc) · 5.18 KB
/
Copy pathschema-index.html
File metadata and controls
118 lines (118 loc) · 5.18 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!-- Schema Start-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "{{ site.title_short }}",
"url": "{{ site.url }}",
"description": "{{ site.description }}",
"disambiguatingDescription": "{{ site.abstract }}",
"keywords": ["time tracker", "time tracking", "free time tracker", "open source time tracker", "productivity tracker", "screen time tracker", "automated time tracker", "time tracker windows", "time tracker linux", "time tracker mac", "RescueTime alternative", "ManicTime alternative", "activity tracker PC", "work hours tracker"],
"abstract": "{{ site.abstract }}",
"about": "ActivityWatch is a bundle of software that tracks your computer activity and respects your privacy. It offers an ecosystem of software to work around it, including ways to collect more data and do different kinds of analysis. We created ActivityWatch completely free and open source so anyone can use, improve and extend it.",
"applicationCategory": "https://en.wikipedia.org/wiki/Time-tracking_software",
"applicationSubCategory": ["DesktopApplication", "MobileApplication", "WebApplication"],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "{{ site.data.ratings.alternativeto.average }}",
"reviewCount": "{{ site.data.ratings.alternativeto.count }}"
},
"softwareVersion": "{{ site.data.downloads.version }}",
"datePublished": "2024-06-12",
"dateCreated": "2016-06-10",
"downloadUrl": "https://activitywatch.net/downloads/",
"softwareHelp": "https://docs.activitywatch.net/en/latest/getting-started.html#installation",
"screenshot": "https://activitywatch.net/img/screenshots/screenshot-v0.9.3-activity.png",
"inLanguage": "en",
"featureList": [
"Application and window tracking",
"Usage categories",
"Browser extensions",
"Editor plugins (IDE)",
"Local and privacy first",
"Cross-platform",
"Synchronization"
],
"audience": {
"@type": "Audience",
"audienceType": [
"Students",
"Professionals",
"Software Developers",
"Freelancers",
"Small Business",
"ADHD individuals",
"Researchers"
]
},
"typicalAgeRange": "all ages",
"operatingSystem": ["Windows", "macOS", "Linux", "Android"],
"availableOnDevice": ["Desktop", "Mobile", "Tablet"],
"potentialAction": {
"@type": "ViewAction",
"target": [
"https://activitywatch.net/downloads/",
"android-app:https://play.google.com/store/apps/details?id=net.activitywatch.android",
{% for platform in site.data.downloads.platforms %}
{% for asset in platform.assets %}
{
"@type": "EntryPoint",
"urlTemplate": "{{ asset.url }}",
"actionApplication": {
"@type": "SoftwareApplication",
"@id": "activitywatch-{{ site.data.downloads.version }}-{{ platform.name | downcase }}-{{ asset.title | replace: ".", "" | downcase }}",
"name": "ActivityWatch {{ site.data.downloads.version }} {{ platform.name }} {{ asset.title }}",
"operatingSystem": "{{ platform.name }}"
}
},
{% endfor %}
{% endfor %}
{
"@type": "EntryPoint",
"urlTemplate": "https://chrome.google.com/webstore/detail/nglaklhklhcoonedhgnpgddginnjdadi/",
"actionApplication": {
"@type": "SoftwareApplication",
"@id": "activitywatch-chrome",
"name": "ActivityWatch Chrome Extension",
"operatingSystem": "Chrome"
}
},
{
"@type": "EntryPoint",
"urlTemplate": "https://addons.mozilla.org/en-US/firefox/addon/aw-watcher-web/",
"actionApplication": {
"@type": "SoftwareApplication",
"@id": "activitywatch-firefox",
"name": "ActivityWatch Firefox Extension",
"operatingSystem": "Firefox"
}
}
]
},
"softwareRequirements": "Requires Windows 10 or later, Linux kernel 5.4 or later, or Android 7.0 or later. macOS version and architecture support varies by release; see the downloads page for current macOS builds.",
"creator": {
"@type": "Person",
"name": "Erik Bjäreholt",
"url": "https://erik.bjareholt.com/",
"sameAs": "https://www.linkedin.com/in/erikbjareholt/"
},
"maintainer": [
{
"@type": "Person",
"name": "Erik Bjäreholt",
"url": "https://erik.bjareholt.com/",
"sameAs": "https://www.linkedin.com/in/erikbjareholt/"
},
{
"@type": "Person",
"name": "Johan Bjäreholt",
"url": "https://www.linkedin.com/in/johanbjareholt/"
}
],
"usageInfo": "https://docs.activitywatch.net/en/latest/getting-started.html#usage",
"discussionUrl": "https://forum.activitywatch.net/",
"releaseNotes": "https://activitywatch.net/timeline/",
"license": "https://www.mozilla.org/en-US/MPL/2.0/"
}
</script>
<!-- Schema End-->