Skip to content

Commit c69d8b3

Browse files
committed
feat: created basic manifest.json to get started
1 parent 6dfce73 commit c69d8b3

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# leetcode tracker browser extension

manifest.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"manifest_version" : 3,
3+
"name": "LeetCode Tracker",
4+
"version": "0.1.0",
5+
"descriptin": "Track your leetcode activity to improve faster",
6+
"permissions": ["storage", "tabs", "activeTab", "scripting"],
7+
"host_permissions": ["https://leetcode.com/*"],
8+
"background": {
9+
"service_worker": "background.js"
10+
},
11+
"action": {
12+
"default_popup": "popup.html",
13+
"default_icon": "placeholder.png"
14+
},
15+
"content_scripts": [
16+
{
17+
"matches": ["https://leetcode.com/*"],
18+
"js": ["content.js"]
19+
}
20+
]
21+
}

0 commit comments

Comments
 (0)