-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 755 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 755 Bytes
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
{
"manifest_version": 3,
"name": "GetRidOfCodespaces!",
"version": "1.1",
"description": "Change the default branch selection on GitHub from 'Codespaces' to 'Checkout Locally'",
"permissions": [
"tabs"
],
"host_permissions": [
"https://github.com/*"
],
"content_scripts": [
{
"matches": ["https://github.com/*"],
"js": ["content.js"]
}
],
"action": {
"default_title": "GetRidOfCodespaces!",
"default_icon": {
"16": "./icons/icon16.png",
"48": "./icons/icon48.png"
}
},
"icons": {
"16": "./icons/icon16.png",
"48": "./icons/icon48.png"
},
"browser_specific_settings": {
"gecko": {
"id": "Hacker@example.com",
"strict_min_version": "79.0"
}
}
}