Skip to content

Commit 45feb1c

Browse files
authored
Merge pull request #16 from RakSrinaNa/develop
2.2.0 Release
2 parents 121aabe + 2653057 commit 45feb1c

188 files changed

Lines changed: 8079 additions & 2624 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

3-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
3+
## [2.2.0] - 2019-11-07
4+
5+
- Update Amcharts to 4.7.7.
6+
- When watching a video across several days the time is split between these days instead of all being on the last day (#15).
7+
- Added a button in the settings to export the data directly on Dropbox.
58

69
## [2.1.3] - 2019-10-08
710

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# YTTracker
22
An extension to track time on YouTube
33

4+
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/knnlnielflnfhdohmihofhdelgahgjdb?label=Chrome%20version)
5+
![Chrome Web Store](https://img.shields.io/chrome-web-store/users/knnlnielflnfhdohmihofhdelgahgjdb?label=Chrome%20suers)](https://chrome.google.com/webstore/detail/youtube-tracker/knnlnielflnfhdohmihofhdelgahgjdb)
6+
7+
[![Mozilla Add-on](https://img.shields.io/amo/v/youtube-tracker?label=Firefox%20version)
8+
![Mozilla Add-on](https://img.shields.io/amo/users/youtube-tracker?label=Firefox%20users&color=green)](https://addons.mozilla.org/en-US/firefox/addon/youtube-tracker/)
9+
410
## Description
511
This application will track your time spent on YouTube. Those datas can be viewed rapidly in the popup icon or in a chart.
612

chrome/js/backgroundChrome.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

chrome/js/browserUtils.js

Lines changed: 0 additions & 183 deletions
This file was deleted.

chrome/manifest.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"storage",
1919
"downloads",
2020
"notifications",
21-
"unlimitedStorage"
21+
"unlimitedStorage",
22+
"identity"
2223
],
2324
"options_page": "options.html",
2425
"browser_action": {
@@ -33,7 +34,6 @@
3334
],
3435
"js": [
3536
"js/lib/jquery/jquery.min.js",
36-
"js/browserUtils.js",
3737
"js/YTTUtils.js",
3838
"js/content.js"
3939
],
@@ -44,10 +44,8 @@
4444
"background": {
4545
"scripts": [
4646
"js/lib/jquery/jquery.min.js",
47-
"js/browserUtils.js",
4847
"js/YTTUtils.js",
49-
"js/background.js",
50-
"js/backgroundChrome.js"
48+
"js/background.js"
5149
]
5250
},
5351
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

chromeBeta/manifest.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"manifest_version": 2,
3+
"name": "YouTube Tracker Beta",
4+
"short_name": "YTTracker",
5+
"description": "This extension will track your time on YouTube",
6+
"version": "!!!VERSION!!!",
7+
"icons": {
8+
"16": "assets/icon16.png",
9+
"48": "assets/icon48.png",
10+
"128": "assets/icon128.png"
11+
},
12+
"author": "MrCraftCod",
13+
"homepage_url": "https://github.com/RakSrinaNa/YTTracker",
14+
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgQG3/oewtkQuMHOb6RKaEYtGWgd4Iv7tYZnO/cdr8/FoBg26DpRM0tTBI1KDeF8I30yVpsKcNjWh6t86iL3P0yROKGuEyhUZIrJIitoROzxyiowscYtfAJFlzwo/dbGr4eEPMuOdzMvl5J7bNPaZGJoXAHYt5auAjJzI7ZQtSxRA+iv3PWFsR1nmNcIhRmV0wP2W43OtFAKclmXuB3YAbzCf42Mtb2oD8FjHpmLWcnHrYggMWr0CQidphB5b9xtx6kgTCSb2LaNfOv1Q9L9MVQbhWw+NPLMves4OltwK3D+0gPbI2ulizSo6CLEPLTGcpn8JE/Xuc/9cRR7q5Kf3WQIDAQAB",
15+
"permissions": [
16+
"https://www.youtube.com/*",
17+
"https://yttracker.mrcraftcod.fr/*",
18+
"storage",
19+
"downloads",
20+
"notifications",
21+
"unlimitedStorage",
22+
"identity"
23+
],
24+
"options_page": "options.html",
25+
"browser_action": {
26+
"default_icon": "assets/icon128.png",
27+
"default_popup": "popup.html"
28+
},
29+
"content_scripts": [
30+
{
31+
"matches": [
32+
"https://www.youtube.com/*",
33+
"https://yttracker.mrcraftcod.fr/*"
34+
],
35+
"js": [
36+
"js/lib/jquery/jquery.min.js",
37+
"js/YTTUtils.js",
38+
"js/content.js"
39+
],
40+
"run_at": "document_start",
41+
"all_frames": true
42+
}
43+
],
44+
"background": {
45+
"scripts": [
46+
"js/lib/jquery/jquery.min.js",
47+
"js/YTTUtils.js",
48+
"js/background.js"
49+
]
50+
},
51+
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
52+
"web_accessible_resources": [
53+
"js/YTTUtils.js",
54+
"js/hookerUtils.js",
55+
"js/hooker.js"
56+
]
57+
}

firefox/js/backgroundFirefox.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)