Skip to content

Commit c19c80c

Browse files
committed
model name bugfix
1 parent 8ce5f68 commit c19c80c

4 files changed

Lines changed: 6 additions & 14 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fox-recap",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "**Fox Recap** is a powerful browser extension designed to help users analyze and understand their browsing habits. It categorizes your browsing history using **AI-powered topic classification** and a **frequency + recency algorithm**, providing **insightful reports** on how you spend time online.",
55
"main": "webpack.config.js",
66
"scripts": {
@@ -12,17 +12,9 @@
1212
"test": "jest --env=jsdom",
1313
"build:ext": "npm run build && web-ext build --overwrite-dest --source-dir ./dist/"
1414
},
15-
"repository": {
16-
"type": "git",
17-
"url": "git+https://github.com/Fox-Recap/Fox-Recap.git"
18-
},
1915
"keywords": [],
2016
"author": "",
2117
"license": "ISC",
22-
"bugs": {
23-
"url": "https://github.com/Fox-Recap/Fox-Recap/issues"
24-
},
25-
"homepage": "https://github.com/Fox-Recap/Fox-Recap#readme",
2618
"devDependencies": {
2719
"@babel/core": "^7.26.10",
2820
"@babel/preset-env": "^7.26.9",

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ export const CONCURRENCY_ENABLED = true;
7575
export const MLENGINECONFIG = {
7676
modelHub: 'huggingface',
7777
taskName: 'text-classification',
78-
modelId: 'foxrecap/URL-TITLE-classifier',
78+
modelId: 'firefoxrecap/URL-TITLE-classifier',
7979
dtype: 'q8', // or 'fp32'
8080
};

src/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Fox Recap",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"description": "Categorize and analyze browsing history for productivity insights.",
66
"permissions": [
77
"history",
@@ -34,7 +34,7 @@
3434
"web_accessible_resources": ["recap.html", "assets/videos/*.mp4"],
3535
"browser_specific_settings": {
3636
"gecko": {
37-
"id": "foxrecap@gmail.com"
37+
"id": "firefoxrecap@gmail.com"
3838
}
3939
},
4040
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src https://big.oisd.nl blob:;"

0 commit comments

Comments
 (0)