-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
26 lines (24 loc) · 759 Bytes
/
manifest.json
File metadata and controls
26 lines (24 loc) · 759 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
{
"manifest_version": 3,
"name": "Youtube Summariser",
"description": "An extension to summarize youtube videos using the transcript",
"version": "1.0",
"permissions": ["activeTab", "declarativeContent"],
"host_permissions": ["http://127.0.0.1:5000/*"],
"action": {
"default_title": "Summarise this video",
"default_icon": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
}