-
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
fa3e579
commit 8e2f785
Showing
10 changed files
with
200 additions
and
86 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,21 +1,26 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "My React Vite Extension", | ||
"version": "1.0", | ||
"description": "A Chrome extension built using React and Vite.", | ||
"action": { | ||
"default_popup": "index.html" | ||
}, | ||
"permissions": ["activeTab", "scripting", "storage"], | ||
"background": { | ||
"service_worker": "background.js" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["<all_urls>"], | ||
"js": ["content.js"], | ||
"run_at": "document_end" | ||
} | ||
] | ||
"manifest_version": 3, | ||
"name": "LeakCode", | ||
"version": "1.0", | ||
"description": "Solve questions with your logic. If you can't finish in 30 minutes, you'll get a hint to help you solve it with the same logic.", | ||
"action": { | ||
"default_popup": "index.html" | ||
}, | ||
"permissions": ["activeTab", "scripting", "storage"], | ||
"background": { | ||
"service_worker": "background.js" | ||
}, | ||
"host_permissions": ["https://leetcode.com/*"], | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://leetcode.com/*"], | ||
"js": ["content.js"], | ||
"run_at": "document_end" | ||
} | ||
], | ||
"icons": { | ||
"16": "logo.png", | ||
"48": "logo.png", | ||
"128": "logo.png" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,3 +1,15 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
body, html { | ||
margin: 0; | ||
padding: 0; | ||
width: 100vw; | ||
height: 100vh; | ||
} | ||
|
||
#root { | ||
width: 100%; | ||
height: 100%; | ||
} |