Compare commits

...

15 Commits

Author SHA1 Message Date
Abhijith Vijayan
d3cd8c77e4 Merge pull request #144 from abhijithvijayan/master
Some checks failed
Build and Deploy / build (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled
Use `browsingActivity` as a required `data_collection_permissions`
2026-02-03 22:43:02 +05:30
abhijithvijayan
3ba64a4892 v4.4.2 2026-02-03 22:41:50 +05:30
abhijithvijayan
90056d24a9 fix: use websiteActivity as we are tracking the current page url 2026-02-03 22:41:32 +05:30
Abhijith Vijayan
5dcb69b622 Merge pull request #143 from abhijithvijayan/master
[FIX] firefox build
2026-02-03 22:08:22 +05:30
abhijithvijayan
04283ad8ab Merge branch 'master' of https://github.com/abhijithvijayan/kutt-extension 2026-02-03 22:07:15 +05:30
abhijithvijayan
ac596dfef6 fix: manifest 2026-02-03 22:04:00 +05:30
abhijithvijayan
33c97b7ff8 Merge branch 'master' of https://github.com/abhijithvijayan/kutt-extension 2026-02-03 21:39:52 +05:30
Abhijith Vijayan
b9d6acdc6e Merge pull request #142 from abhijithvijayan/new-release
[FIX] Firefox store release issue
2026-02-03 21:39:31 +05:30
abhijithvijayan
ce0b8bb4b9 v4.4.1 2026-02-03 21:35:43 +05:30
abhijithvijayan
3c34baed9c fix: firefox publish issue 2026-02-03 21:35:30 +05:30
Abhijith Vijayan
6049e17105 Merge pull request #141 from abhijithvijayan/master
[CHORE] Upgrade packages
2026-01-04 18:45:36 +05:30
Abhijith Vijayan
a13d6b56ed Merge branch 'thedevs-network:master' into master 2026-01-04 18:42:34 +05:30
abhijithvijayan
d95c134ec4 fix: conflicts 2026-01-04 18:42:08 +05:30
abhijithvijayan
a01405b883 Merge branch 'master' of https://github.com/abhijithvijayan/kutt-extension 2026-01-04 18:39:36 +05:30
abhijithvijayan
6f450eb79f chore: bump packages 2026-01-04 18:37:31 +05:30
3 changed files with 501 additions and 834 deletions

1281
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "kutt-extension",
"version": "4.4.0",
"version": "4.4.2",
"description": "Kutt.it extension for browsers.",
"license": "MIT",
"repository": "https://github.com/thedevs-network/kutt-extension.git",
@@ -43,34 +43,34 @@
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "^3.0.0",
"@abhijithvijayan/eslint-config": "^3.0.1",
"@abhijithvijayan/tsconfig": "^1.5.1",
"@types/node": "^22.10.2",
"@types/node": "^25.0.3",
"@types/react": "^19.0.2",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^19.0.2",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.5.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier": "^3.7.4",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-checker": "^0.8.0",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-wext-manifest": "^1.2.2",
"vite-plugin-zip-pack": "^1.2.4"
}
}
}

View File

@@ -14,7 +14,11 @@
"__firefox__browser_specific_settings": {
"gecko": {
"id": "support@kutt.it",
"strict_min_version": "109.0"
"strict_min_version": "112.0",
"data_collection_permissions": {
"required": ["websiteActivity"],
"optional": []
}
}
},
"__chrome|firefox__author": "abhijithvijayan",
@@ -35,14 +39,8 @@
"__firefox__type": "module"
},
"__chrome__minimum_chrome_version": "88",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": ["activeTab", "storage"],
"host_permissions": ["http://*/*", "https://*/*"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},