Manages LeetCode exercises on GitHub
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Code Study Buddy",
"description": "Manages LeetCode exercises on GitHub",
"version": "1.0.7",
"manifest_version": 2,
"permissions": [
"storage"
],
"browser_action": {
"default_title": "Code Study Buddy",
"default_popup": "index.html",
"default_icon": {
"16": "/images/logo-32.png",
"128": "/images/logo-128.png",
"400": "/images/logo.png"
}
},
"icons": {
"16": "/images/logo-32.png",
"128": "/images/logo-128.png",
"400": "/images/logo.png"
},
"content_scripts": [
{
"matches": [
"*://*.leetcode.com/problems/*"
],
"js": [
"/scripts/leetcode.js"
]
},
{
"matches": [
"*://*.binarysearch.com/problems/*"
],
"js": [
"/scripts/binarysearch.js"
]
},
{
"matches": [
"*://*.hackerrank.com/challenges/*"
],
"js": [
"/scripts/hackerrank.js"
]
}
]
}