-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49270fc
commit 459241b
Showing
5 changed files
with
158 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "AI Notetaking Extension", | ||
"version": "1.0", | ||
"description": "Take notes and get AI-generated prompts.", | ||
"action": { | ||
"default_popup": "popup.html" | ||
}, | ||
"permissions": [ | ||
"storage", | ||
"identity" | ||
], | ||
"host_permissions": [ | ||
"http://localhost:3000/*", | ||
"https://accounts.google.com/*", | ||
"https://www.googleapis.com/*" | ||
], | ||
"content_security_policy": { | ||
"extension_pages": "script-src 'self'; object-src 'self'" | ||
} | ||
"manifest_version": 3, | ||
"name": "AI Notetaking Extension", | ||
"version": "1.0", | ||
"description": "Take notes, categorize them, and get AI-generated prompts.", | ||
"action": { | ||
"default_popup": "popup.html" | ||
}, | ||
"permissions": [ | ||
"storage", | ||
"identity" | ||
], | ||
"host_permissions": [ | ||
"http://localhost:3000/*", | ||
"https://accounts.google.com/*", | ||
"https://www.googleapis.com/*" | ||
], | ||
"content_security_policy": { | ||
"extension_pages": "script-src 'self'; object-src 'self'" | ||
} | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,40 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
width: 300px; | ||
padding: 10px; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
} | ||
|
||
#noteArea { | ||
width: 100%; | ||
height: 150px; | ||
margin-top: 10px; | ||
padding: 5px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.buttons { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-top: 10px; | ||
} | ||
|
||
button { | ||
padding: 10px; | ||
cursor: pointer; | ||
width: 45%; | ||
} | ||
|
||
font-family: Arial, sans-serif; | ||
width: 300px; | ||
padding: 10px; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-top: 10px; | ||
} | ||
|
||
#categorySelect { | ||
width: 100%; | ||
padding: 5px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
#noteArea { | ||
width: 100%; | ||
height: 150px; | ||
margin-top: 10px; | ||
padding: 5px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.buttons { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-top: 10px; | ||
} | ||
|
||
button { | ||
padding: 10px; | ||
cursor: pointer; | ||
width: 45%; | ||
} |