Chrome and Firefox extension
This commit is contained in:
parent
b5bf833dcf
commit
9d4b2ffbb5
13 changed files with 419 additions and 4 deletions
25
crabfit-browser-extension/manifest.json
Normal file
25
crabfit-browser-extension/manifest.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "Crab Fit",
|
||||
"description": "Enter your availability to find a time that works for everyone!",
|
||||
"version": "1.0",
|
||||
"manifest_version": 2,
|
||||
|
||||
"author": "Ben Grant",
|
||||
"homepage_url": "https://crab.fit",
|
||||
|
||||
"browser_action": {
|
||||
"default_popup": "popup.html",
|
||||
"default_icon": {
|
||||
"16": "res/icon16.png",
|
||||
"32": "res/icon32.png",
|
||||
"48": "res/icon48.png",
|
||||
"128": "res/icon128.png"
|
||||
}
|
||||
},
|
||||
"icons": {
|
||||
"16": "res/icon16.png",
|
||||
"32": "res/icon32.png",
|
||||
"48": "res/icon48.png",
|
||||
"128": "res/icon128.png"
|
||||
}
|
||||
}
|
||||
22
crabfit-browser-extension/popup.html
Normal file
22
crabfit-browser-extension/popup.html
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body {
|
||||
width: 360px;
|
||||
height: 500px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
iframe {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<iframe src="https://crab.fit/create" allow="clipboard-write"></iframe>
|
||||
</body>
|
||||
</html>
|
||||
BIN
crabfit-browser-extension/res/icon128.png
Normal file
BIN
crabfit-browser-extension/res/icon128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
BIN
crabfit-browser-extension/res/icon16.png
Normal file
BIN
crabfit-browser-extension/res/icon16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 620 B |
BIN
crabfit-browser-extension/res/icon32.png
Normal file
BIN
crabfit-browser-extension/res/icon32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
crabfit-browser-extension/res/icon48.png
Normal file
BIN
crabfit-browser-extension/res/icon48.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Loading…
Add table
Add a link
Reference in a new issue