-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
{
"manifest_version": 3,
"name": "Open in VSCode",
"version": "0.1.1",
"description": "Adds an 'Open in VSCode' button to GitHub repositories, allowing users to quickly open the repository in Visual Studio Code.",
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"content.js"
],
"css": [
"./assets/styles.css"
]
}
],
"icons": {
"16": "./assets/VSCode-icon.jpg",
"48": "./assets/VSCode-icon.jpg",
"128": "./assets/VSCode-icon.jpg"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"icons": [
{
"16": "./assets/VSCode-icon.jpg",
"48": "./assets/VSCode-icon.jpg",
"128": "./assets/VSCode-icon.jpg"
}
]
},
"host_permissions": [
"http://*/*",
"https://*/*"
]
}