Skip to content

A chrome extension to keep track of friends’ activities on leetcode.com

License

Notifications You must be signed in to change notification settings

pandfun/LeetCode-Friends

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LeetCode Friends

This chrome extension allows users to add and displays recent activity of your LeetCode friends. It works based on the LeetCode GraphQL API to retrieve recent activities of friends.

✨ GUI Preview ✨
Activities Friends



Features

  • Add and Remove friends.
  • Display recent activity for each of your LeetCode friends.

Important

This feature won't work if the user has made their submission history private on leetcode. image



Installation and Setup

Prerequisites

Installation Steps

  1. Clone the Repository:
git clone https://github.com/pandfun/LeetCode-Friends.git
  1. Set Up the Extension on Chrome:

    • Open Chrome and go to chrome://extensions.
    • Enable "Developer mode" (top right corner).
    • Click "Load unpacked" (top left corner).
    • Select the LeetCode-Friends folder.

Installation Photo



Customizations

  • Change how many recent submissions are fetched for each user:

    1: Navigate to : src/graphql/problems.js

    2: Go the line having this (or click on the hyperline above to find the line):

    const url = "https://leetcode.com/graphql";
    
    const NUM_SUBMISSIONS = 5; // Change this
    
    // Get the recent AC Submissions for a user
    export const getRecentAcSubmissions = async (username, limit = NUM_SUBMISSIONS) => {...}

    3: Modify the value of NUM_SUBMISSIONS (Leetcode allows a max value of 20).

Note

A higher value would mean fetching more data. This can slow down the time to fetch user submissions.



Preview

Activities Friends


Acknowledgements

  • LeetCode for providing the problem-solving platform.
  • GraphQL for providing a flexible query language for APIs.
  • Node.js for server-side JavaScript execution.

About

A chrome extension to keep track of friends’ activities on leetcode.com

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published