Skip to content

Commit

Permalink
Merge pull request #2 from vetrivelcsamy/dev
Browse files Browse the repository at this point in the history
Update BFE.dev Tracker extension and README.md
  • Loading branch information
vetrivelcsamy authored Dec 17, 2023
2 parents df4dcff + 3a554c5 commit e1d39d0
Show file tree
Hide file tree
Showing 4 changed files with 206 additions and 192 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,26 @@

1. Install the BFE.dev Tracker extension in your web browser.
2. Solve and submit BFE.dev / bigfrontend.dev problems. Upon successful submission, BFE.dev tracker sets the next review time for the problem based on the Ebbinghaus forgetting curve.
3. Open BFE.dev tracker to view problems that need to be reviewed now, problems scheduled for future review and mastered problems.
3. Open BFE.dev tracker to view problems that need to be reviewed now, problems scheduled for future review, and mastered problems.
4. Enjoy coding!

## Installation Guide

# thank you
To install the BFE.dev Tracker extension, follow these steps:

[https://github.com/HaolinZhong/PMCA/](https://github.com/HaolinZhong/PMCA/)
1. Clone the [BFE.dev Tracker](https://github.com/vetrivelcsamy/bfe-dev-tracker) repository to your local machine.
2. Open your web browser and navigate to the extensions management page.
3. Enable developer mode.
4. Click on "Load unpacked" and select the cloned repository folder.
5. The BFE.dev Tracker extension should now be installed and ready to use.

## Requirements

Before installing the BFE.dev Tracker extension, make sure you have the following:

- A compatible web browser (Chrome).
- An active internet connection.

## Inspiration

- [https://github.com/HaolinZhong/PMCA/](https://github.com/HaolinZhong/PMCA/)
Binary file modified assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 26 additions & 35 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,27 @@
{
"manifest_version": 3,
"name": "BFE.dev tracker",
"version": "0.9.4",
"author": "Vetrivel Chinnasamy",
"description": "BFE.dev tracker tracks your BFE.dev/bigfrontend.dev and prompt you to review based on Ebbinghaus's Forgetting Curve",
"homepage_url": "https://github.com/vetrivelcsamy/bfe-dev-tracker",
"icons": {
"128": "assets/logo.png",
"48": "assets/logo.png",
"16": "assets/logo.png"
},
"action": {
"default_icon": "assets/logo.png",
"default_popup": "popup.html"
},
"background": {},
"host_permissions": [
"https://bigfrontend.dev/*"
],
"permissions": [
"unlimitedStorage",
"storage"
],
"content_scripts": [
{
"matches": [
"https://bigfrontend.dev/*"
],
"js": [
"scripts/bfe.js"
],
"run_at": "document_idle"
}
]
}
"manifest_version": 3,
"name": "BFE.dev tracker",
"version": "0.9.4",
"author": "Vetrivel Chinnasamy",
"description": "BFE.dev tracker tracks your BFE.dev/bigfrontend.dev and prompt you to review based on Ebbinghaus's Forgetting Curve",
"homepage_url": "https://github.com/vetrivelcsamy/bfe-dev-tracker",
"icons": {
"128": "assets/logo.png",
"48": "assets/logo.png",
"16": "assets/logo.png"
},
"action": {
"default_icon": "assets/logo.png",
"default_popup": "popup.html"
},
"background": {},
"host_permissions": ["https://bigfrontend.dev/*"],
"permissions": ["unlimitedStorage", "storage"],
"content_scripts": [
{
"matches": ["https://bigfrontend.dev/*"],
"js": ["scripts/bfe.js"],
"run_at": "document_idle"
}
]
}
Loading

0 comments on commit e1d39d0

Please sign in to comment.