SweetCode is a Chrome extension designed to gamify your LeetCode practice sessions. It rewards you with social media usage time based on the difficulty of the LeetCode problems you solve. Once installed, SweetCode helps you stay productive by allowing limited access to social media websites until your time runs out. Your time allowance resets daily.
- Earn Rewards: Gain social media time based on LeetCode problem difficulty:
- Easy: 10 minutes
- Medium: 20 minutes
- Hard: 40 minutes
- Automatic Reset: Time allowance resets every day.
- Controlled Access: Only allows access to social media websites when time is available.
- Customizable: Easily modify time rewards or add/remove social media platforms.
-
Clone this repository to your local machine:
git clone https://github.com/yourusername/sweetcode.git
-
Navigate to the project directory:
cd sweetcode
- Open Chrome and navigate to
chrome://extensions/
. - Enable Developer mode in the top-right corner.
- Click Load unpacked and select the directory where you cloned the repository.
- The extension will now appear in your extensions list.
-
Open the
background.js
file in a text editor. -
Locate the
isSocialMediaMainPage
function and edit the patterns to include or remove specific social media platforms. The default configuration supports:- YouTube
- Twitter/X
Example:
const linkedinPattern = /^(www\.)?linkedin\.com\/?.*/i; // Adding LinkedIn as a social media platform
-
Add the new pattern to the return statement in the
isSocialMediaMainPage
function:return ( ... // Existing patterns (urlObj.hostname === 'linkedin.com' || urlObj.hostname === 'www.linkedin.com') && linkedinPattern.test(urlObj.host + urlObj.pathname) );
-
Save the file and reload the extension on the
chrome://extensions/
page.
- Open the
background.js
file in a text editor. - Locate the
timeRewards
object:const timeRewards = { 'Easy': 10, 'Medium': 20, 'Hard': 40 };
- Modify the values to set your desired reward times (in minutes). For example:
const timeRewards = { 'Easy': 5, 'Medium': 15, 'Hard': 30 };
- Save the file and reload the extension on the
chrome://extensions/
page.
- Track LeetCode Submissions: The extension listens for LeetCode problem submissions. When you successfully submit a problem, it checks the difficulty level.
- Reward Social Media Time: Based on the problem difficulty, it adds the corresponding time to your social media allowance.
- Allow Social Media Access: If your time runs out, you can only access the main pages of social media platforms (e.g., Instagram, YouTube, Facebook, Twitter/X). Other websites remain accessible as usual.
- Your social media time is tracked locally in Chrome's storage and resets daily.
- The extension currently supports Instagram, YouTube, Facebook, Twitter/X by default, with customization options to add others like LinkedIn.
Feel free to fork this repository and submit pull requests to enhance the functionality of SweetCode. Suggestions for additional features are welcome!
This project is licensed under the MIT License. See the LICENSE
file for details.
Enjoy productive coding sessions and guilt-free social media breaks with SweetCode!