Skip to content

Commit 22dfe2f

Browse files
committed
update readme
1 parent 893dc3a commit 22dfe2f

5 files changed

Lines changed: 21 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25+
.cursor

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@
1818
### 🔑 **Cookie Management**
1919
- **Add Cookies**: Manually add cookies with a user-friendly interface.
2020
- **Save Cookies**: Store cookies for quick reuse.
21-
- **Set Cookies with One Click**: Automatically set saved cookies on the target website.
21+
- **Apply Cookies**: Set saved cookies on target websites with one click.
2222
- **Delete Cookies**: Easily remove cookies when they are no longer needed.
23+
- **Filter Cookies**: Search and filter cookies by name or value.
2324

2425
### 🔒 **JWT Token Management**
2526
- **Save JWT Tokens**: Input and store JWT bearer tokens securely.
26-
- **Set Tokens in Swagger**: Apply saved tokens to Swagger docs effortlessly.
27-
- **Auto Login Feature**: Enable auto-login to automatically set your token whenever you open a Swagger page.
27+
- **Apply to Swagger**: Set tokens in Swagger documentation with one click.
28+
29+
### 🎯 **Project Management**
30+
- **Organize by Projects**: Group cookies and tokens by project for better organization
31+
- **Multiple Projects**: Create and manage different projects for various applications
32+
- **Project Filtering**: Filter cookies and tokens by project
2833

2934
### 🔄 **Profile Management**
3035
- **Export Profiles**: Save all your cookies and tokens into a single exportable file.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="en" translate="no">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/png" href="/icon/32.png" />

manifest.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Cookify",
44
"description": "Simplify cookie and JWT token management with one-click actions. Save time and boost productivity!",
5-
"version": "1.0",
5+
"version": "1.1",
66
"permissions": [
77
"cookies",
88
"activeTab",
@@ -38,6 +38,15 @@
3838
"/src/runtime/router.ts"
3939
],
4040
"media": []
41+
},
42+
{
43+
"matches": [
44+
"<all_urls>"
45+
],
46+
"js": [
47+
"content-script/src/main.tsx"
48+
],
49+
"run_at": "document_end"
4150
}
4251
]
4352
}

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('tailwindcss').Config} */
22
export default {
33
darkMode: ["class"],
4-
content: ["./index.html", "./src/**/*.{ts,tsx,js,jsx}"],
4+
content: ["./index.html", "./src/**/*.{ts,tsx,js,jsx}", "./content-script/**/*.{js,ts,jsx,tsx,html}"],
55
theme: {
66
extend: {
77
borderRadius: {

0 commit comments

Comments
 (0)