forked from oleggr/helper_browser_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
27 lines (27 loc) · 785 Bytes
/
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
{
"name": "Arcadia review request image generator",
"description": "Generate image with lines count diff to request review",
"version": "1.0",
"manifest_version": 3,
"permissions": ["activeTab", "scripting"],
"content_scripts": [{
"js": ["foreground.js"],
"matches": ["https://a.yandex-team.ru/review/*"],
"run_at" : "document_idle"
}],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "/image/favicon-16x16.png",
"32": "/image/favicon-32x32.png",
"48": "/image/favicon-48x48.png",
"128": "/image/favicon-128x128.png"
}
},
"icons": {
"16": "/image/favicon-16x16.png",
"32": "/image/favicon-32x32.png",
"48": "/image/favicon-48x48.png",
"128": "/image/favicon-128x128.png"
}
}