diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f66c74 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.zip \ No newline at end of file diff --git a/README.md b/README.md index 9d62bd3..6323f82 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,21 @@
- - +

Chrome Extensions for Calculate Meeting Cost

-

- 🚧 UNDERCONSTRUCTION -

-
+Change the Currency by go to the option + + + +Here is the version in IDR + + + + ## Usage - Download this repository content and go to `chrome://extensions` in your chrome browser diff --git a/compile.sh b/compile.sh new file mode 100644 index 0000000..69b8da7 --- /dev/null +++ b/compile.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +zip -r ./mCostly.zip background.js chrome.d.ts content.js icons/* manifest.json options.html options.js \ No newline at end of file diff --git a/docs/display-cost-in-idr.png b/docs/display-cost-in-idr.png new file mode 100644 index 0000000..df2f893 Binary files /dev/null and b/docs/display-cost-in-idr.png differ diff --git a/docs/display-cost-in-usd.png b/docs/display-cost-in-usd.png new file mode 100644 index 0000000..511c529 Binary files /dev/null and b/docs/display-cost-in-usd.png differ diff --git a/docs/option-cost.png b/docs/option-cost.png new file mode 100644 index 0000000..3f07bf1 Binary files /dev/null and b/docs/option-cost.png differ diff --git a/icons/meeting-mahal-128.png b/icons/meeting-mahal-128.png new file mode 100644 index 0000000..1fefd8d Binary files /dev/null and b/icons/meeting-mahal-128.png differ diff --git a/icons/meeting-mahal-16.png b/icons/meeting-mahal-16.png new file mode 100644 index 0000000..049ffaf Binary files /dev/null and b/icons/meeting-mahal-16.png differ diff --git a/icons/meeting-mahal-32.png b/icons/meeting-mahal-32.png new file mode 100644 index 0000000..fe5ece6 Binary files /dev/null and b/icons/meeting-mahal-32.png differ diff --git a/icons/meeting-mahal-48.png b/icons/meeting-mahal-48.png new file mode 100644 index 0000000..ceb1f94 Binary files /dev/null and b/icons/meeting-mahal-48.png differ diff --git a/manifest.json b/manifest.json index 6949b8c..5f8def1 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,9 @@ "manifest_version": 3, "name": "Meeting is COSTLY!", "author": "r17x", - "version": "1.0.0", + "version": "0.1.0", "options_page": "options.html", + "description": "simple meeting cost calculation in calendar google", "content_scripts": [ { "matches": ["https://calendar.google.com/*"], @@ -11,7 +12,15 @@ } ], "permissions": ["storage", "activeTab", "scripting", "tabs"], - "action": {}, + "action": { + "default_icon": "icons/meeting-mahal-32.png" + }, + "icons": { + "16": "icons/meeting-mahal-16.png", + "32": "icons/meeting-mahal-32.png", + "48": "icons/meeting-mahal-48.png", + "128": "icons/meeting-mahal-128.png" + }, "background": { "service_worker": "background.js" } diff --git a/options.js b/options.js index b47ddc4..e57ccf2 100644 --- a/options.js +++ b/options.js @@ -1,8 +1,8 @@ const app0 = (f) => f(); const defaultOptions = { - hourlyRate: 560000, - currency: "IDR.id-ID", + hourlyRate: 0, + currency: "", }; const id = {