-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
executable file
·29 lines (29 loc) · 1.25 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "Leetcode Mask",
"description": "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor",
"version": "0.3",
"background": {
"scripts": ["js/jquery.js", "js/jquery-watch.min.js", "js/background.js"]
},
"permissions": [
"tabs", "http://leetcode.com/problemset/*","https://leetcode.com/problemset/*","http://leetcode.com/problems/*","https://leetcode.com/problems/*","https://leetcode.com/tag/*", "http://leetcode.com/tag/*", "https://leetcode.com/company/*","http://leetcode.com/company/*"
],
"browser_action": {
"default_title": "Leetcode Mask",
"default_icon": "assets/mask_16.png",
"default_popup": "options.html"
},
"icons": { "16": "assets/mask_16.png",
"48": "assets/mask_48.png",
"128": "assets/mask_128.png"},
"content_scripts": [
{
"matches": ["http://leetcode.com/problemset/*","https://leetcode.com/problemset/*","http://leetcode.com/problems/*","https://leetcode.com/problems/*", "https://leetcode.com/tag/*", "http://leetcode.com/tag/*", "https://leetcode.com/company/*","http://leetcode.com/company/*"],
"js": ["js/jquery.js", "js/jquery-watch.min.js", "js/background.js"]
}
],
"permissions": [
"storage"
],
"manifest_version": 2
}