-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 847 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 847 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
{
"manifest_version": 3,
"name": "GitLab MR Approval Guard",
"version": "2.2.0",
"description": "Blocks the GitLab merge button until at least one approval is received, bringing Premium-level safeguards to any team for free.",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png",
"256": "images/icon-256.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "GitLab MR Guard Settings"
},
"permissions": ["storage"],
"content_scripts": [
{
"matches": ["https://gitlab.com/*"],
"js": ["content.js"],
"css": ["styles.css"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "gitlab-mr-approval-guard@codewithemad.ir",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}