forked from ps1899/YouTube-Transcript-Summarizer
-
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) · 747 Bytes
/
Manifest.json
File metadata and controls
26 lines (24 loc) · 747 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 Summarizer",
"description": "Single click Chrome Extension to summarize YouTube videos using Transcript",
"version": "1.0",
"permissions": ["activeTab", "declarativeContent"],
"host_permissions": ["http://127.0.0.1:5000/*"],
"action": {
"default_title": "Summarize 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"
}
}