-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
34 lines (34 loc) · 921 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
28
29
30
31
32
33
34
{
"manifest_version": 2,
"name": "gogdl-ng",
"version": "1.0",
"author": "LegendaryB",
"description": "Browser extension for sending the current Google Drive folder id to the gogdl-ng backend.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"browser_action": {
"default_icon": "icons/icon-48.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"*://drive.google.com/*"
],
"css": [
"https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/css/iziToast.min.css"
],
"js": [
"https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/js/iziToast.min.js",
"drive_extension.js"
]
}
],
"permissions": [
"<all_urls>"
]
}