The unofficial extension for Khan Academy notifications.
Inspired by The Khan Academy Extension, Khan Academy Notifications is an extension dedicated to timely delivery of user notifications, alongside additional features aimed at augmenting the learner's experience.
For direct contact with the developer team, check out our Discord server.
If you would like to report a bug or have any other feedback, please create an issue on our GitHub repository.
- Instantly reply to notifications in the popup.
- Mark all notifications as read in one click.
- Experience lightning-fast loading times with predictive preloading techniques.
- Boost your Khan Academy experience with the ability to load 100 replies at a time, instead of just 10.
- Take control of your browsing experience with customizable comment sorting on Khan Academy.
Outlined below are two pre-established development processes for prospective contributors. Prior to beginning either process, ensure you have a clone of the code.
git clone https://github.com/eliasmurcray/ka-notifications.git
cd ka-notifications
npm install
To begin, run the following command:
npm run dev
Proceed to make your code changes. It should update after every save. To test the extension on Chrome, follow these steps:
-
Open a new tab in your Chrome browser.
-
In the address bar, type
chrome://extensions
and press Enter. -
In the top right corner of the "Extensions" page, you'll find a switch that says "Developer Mode." Turn it on.
-
With "Developer Mode" enabled, you can now click the "Load Unpacked" button located in the top left corner of the same "Extensions" page.
-
Navigate to and select your
chrome/
folder. -
Your extension should now be loaded and running in Chrome.
Note: In the future, if you have the extension already running locally, you can update it as follows:
-
Open a new tab in your Chrome browser.
-
In the address bar, type
chrome://extensions
and press Enter. -
On the "Extensions" page, look in the top left corner, and you'll see an "Update" button.
-
Click the "Update" button, and it will pull the latest version of the extension from the same location on your computer and update it.
Firefox is now unsupported!
Unfortunately, Firefox does not have a hot reload technique. You will have to run the following command whenever making a code change for testing on Firefox:
npm run release
To test the extension on Firefox, follow these steps:
-
Navigate to
about:debugging#/runtime/this-firefox
in your browser. -
Expand the "Temporary Extensions" section.
-
Click "Load Temporary Add-on" and upload the latest zip file from the
zip/
directory, which should contain a file with the letter "f." -
To grant the extension the necessary permissions, right-click on the extension icon in your toolbar.
-
Click on "Manage Extension" from the context menu.
-
Go to the Permissions tab.
-
Turn on the switch that allows access to
https://www.khanacademy.org
.
Before submitting a PR, please run the following command to ensure the code passes the syntax and style checks:
npm run release
Then submit a PR as normal.