Skip to content

Commit 244b8bc

Browse files
committed
feat: update api endpoint and adjust time intervals
1 parent 4bf8020 commit 244b8bc

16 files changed

Lines changed: 1835 additions & 1899 deletions

manifest.json

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@
33
"description": "Shows Win/Lose/Draw and average accuracy for players on chess.com",
44
"author": "thieleju",
55
"manifest_version": 3,
6-
"version": "2.7.5",
7-
"permissions": [
8-
"activeTab",
9-
"scripting",
10-
"storage"
11-
],
6+
"version": "2.8.0",
7+
"permissions": ["activeTab", "scripting", "storage"],
128
"action": {
139
"default_locale": "en",
1410
"default_title": "Chess Stats",
@@ -35,15 +31,11 @@
3531
"https://*.chess.com/live/game/*",
3632
"https://*.chess.com/analysis/game/live/*"
3733
],
38-
"js": [
39-
"src/scripts/insights.ts"
40-
]
34+
"js": ["src/scripts/insights.ts"]
4135
}
4236
],
43-
"host_permissions": [
44-
"https://*.chess.com/*"
45-
],
37+
"host_permissions": ["https://*.chess.com/*"],
4638
"content_security_policy": {
4739
"extension_pages": "script-src 'self'; object-src 'self';"
4840
}
49-
}
41+
}

package.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chess-com-insights",
33
"private": true,
4-
"version": "2.7.5",
4+
"version": "2.8.0",
55
"type": "module",
66
"repository": {
77
"type": "git",
@@ -18,40 +18,40 @@
1818
},
1919
"dependencies": {
2020
"@mdi/font": "7.4.47",
21-
"luxon": "^3.6.1",
22-
"vue": "^3.5.13",
23-
"vuetify": "^3.7.5"
21+
"luxon": "^3.7.2",
22+
"vue": "^3.5.41",
23+
"vuetify": "^4.1.11"
2424
},
2525
"devDependencies": {
26-
"@crxjs/vite-plugin": "2.0.0-beta.33",
27-
"@eslint/js": "^9.16.0",
28-
"@types/chai": "^5.0.1",
29-
"@types/chrome": "^0.0.323",
30-
"@types/eslint__js": "^8.42.3",
31-
"@types/jsdom": "^21.1.7",
26+
"@crxjs/vite-plugin": "2.7.1",
27+
"@eslint/js": "^10.0.1",
28+
"@types/chai": "^5.2.3",
29+
"@types/chrome": "^0.2.7",
30+
"@types/eslint__js": "^9.14.0",
31+
"@types/jsdom": "^30.0.0",
3232
"@types/jsdom-global": "^3.0.7",
33-
"@types/luxon": "^3.6.2",
34-
"@types/mocha": "^10.0.9",
35-
"@types/node": "^22.10.1",
36-
"@types/sinon": "^17.0.3",
33+
"@types/luxon": "^3.7.5",
34+
"@types/mocha": "^10.0.10",
35+
"@types/node": "^26.3.0",
36+
"@types/sinon": "^22.0.0",
3737
"@types/webfontloader": "^1.6.38",
38-
"@typescript-eslint/eslint-plugin": "^8.17.0",
39-
"@vitejs/plugin-vue": "^5.1.4",
40-
"c8": "^10.1.2",
41-
"chai": "^5.1.2",
42-
"eslint": "^9.16.0",
43-
"jsdom": "^26.1.0",
44-
"mocha": "^11.0.1",
38+
"@typescript-eslint/eslint-plugin": "^8.68.0",
39+
"@vitejs/plugin-vue": "^6.0.8",
40+
"c8": "^12.0.0",
41+
"chai": "^6.2.2",
42+
"eslint": "^10.9.1",
43+
"jsdom": "^30.0.1",
44+
"mocha": "^11.8.0",
4545
"mocha-junit-reporter": "^2.2.1",
46-
"prettier": "^3.4.2",
47-
"sinon": "^19.0.2",
46+
"prettier": "^3.9.6",
47+
"sinon": "^22.1.0",
4848
"source-map-support": "^0.5.21",
49-
"ts-mocha": "^10.0.0",
49+
"ts-mocha": "^11.1.0",
5050
"ts-node": "^10.9.2",
51-
"typescript": "^5.8.3",
52-
"typescript-eslint": "^8.17.0",
53-
"vite": "^6.0.9",
54-
"vite-plugin-vuetify": "^2.0.4",
55-
"vue-tsc": "^2.2.10"
51+
"typescript": "^6.0.3",
52+
"typescript-eslint": "^8.68.0",
53+
"vite": "^8.2.2",
54+
"vite-plugin-vuetify": "^2.1.3",
55+
"vue-tsc": "^3.3.11"
5656
}
57-
}
57+
}

0 commit comments

Comments
 (0)