-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 1.02 KB
/
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
28
29
30
31
32
33
34
35
36
{
"manifest_version": 3,
"name": "Medium Blog Summarizer",
"version": "1.0",
"description": "Summarizes the content of Medium blogs using LangChain.",
"permissions": [
"activeTab",
"scripting",
"identity",
"storage",
"webRequest"
],
"action": {
"default_popup": "medium.html",
"default_icon": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://medium.com/*",
"https://*.medium.com/*",
"https://summarizer-medium-naman.vercel.app/*",
"https://www.googleapis.com/oauth2/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"oauth2": {
"client_id": "218659612489-o0dfka4c7ujh31najnvjn4mffui09h03.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
}
}