-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
21 lines (21 loc) · 1013 Bytes
/
manifest.json
File metadata and controls
21 lines (21 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name":"Leetcode Analyzer",
"version":"0.0.5",
"manifest_version":3,
"description":"Add a graph for visualization of number of question per tag and also add a contest history table",
"icons":{
"16":"src/Images/16X16_LOGO.png",
"48":"src/Images/48X48_LOGO.png",
"128":"src/Images/125X125_LOGO.png"
},
"action":{
"default_popup":"popup.html",
"default_icon":"src/Images/125X125_LOGO.png"
},
"content_scripts":[{
"js":["src/component/tagData.js","src/component/fetchUserRankAndContest_Details.js","bundle.js"],
"css":["style.css","styleForTable.css"],
"matches":["https://leetcode.com/*"],
"exclude_matches": ["https://leetcode.com/explore/*","https://leetcode.com/problemset/*","https://leetcode.com/contest/*","https://leetcode.com/discuss/*","https://leetcode.com/store/*","https://leetcode.com/subscribe/*","https://leetcode.com/playground/*","https://leetcode.com/"]
}]
}