forked from QasimWani/LeetHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1.15 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
30
31
32
33
34
35
36
{
"manifest_version" : 2,
"name" : "LeetHub",
"description" : "Automatically integrate your code with LeetCode and GitHub",
"homepage_url": "https://github.com/QasimWani/LeetHub",
"version" : "0.1.1",
"author" : "Qasim Wani",
"browser_action": {
"default_icon": "assets/thumbnail.png",
"default_popup": "popup.html"
},
"icons": {
"16": "assets/thumbnail.png",
"48": "assets/thumbnail.png",
"128": "assets/thumbnail.png"
},
"background": {
"scripts": ["scripts/background.js"],
"persistent": false
},
"permissions": [
"tabs",
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https://leetcode.com/*", "https://github.com/*"
],
"js": ["scripts/leetcode.js", "scripts/authorize.js"],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https://code.jquery.com/jquery-3.3.1.min.js https://github.com/login/oauth/authorize https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js; object-src 'self'"
}