Skip to content

Commit

Permalink
Extension - v3
Browse files Browse the repository at this point in the history
  • Loading branch information
brentspine committed Oct 14, 2024
1 parent b1e8e30 commit cf40388
Show file tree
Hide file tree
Showing 8 changed files with 746 additions and 0 deletions.
692 changes: 692 additions & 0 deletions extension/content.js

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"manifest_version": 3,
"name": "Monkeytype Quote Tracker",
"version": "3.0.1",
"description": "Additional features for quotes on Monkeytype",
"permissions": [
"activeTab"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "nord16.png",
"32": "nord32.png",
"48": "nord48.png",
"128": "nord128.png"
},
"content_scripts": [
{
"matches": ["https://monkeytype.com/*"],
"js": ["content.js"],
"run_at": "document_start"
}
]
}

Binary file added extension/nord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extension/nord128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extension/nord16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extension/nord32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extension/nord48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions extension/popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vh;
background-color: #1a1a1a;
color: #ffffff;
font-family: Arial, sans-serif;
}

.placeholder {
text-align: center;
}
</style>
</head>
<body>
<div class="placeholder">
<h1>Popup is currently under development</h1>
<p>Please check back later for updates</p>
</div>
</body>
</html>

0 comments on commit cf40388

Please sign in to comment.