-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
59 lines (59 loc) · 1.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "Slides.com Companion",
"manifest_version": 3,
"version": "1.3.5",
"description": "Chrome/Edge extension that aims to add a few missing features (free) to Slides.com presentations.",
"icons": {
"16": "assets/icons/16x16.png",
"32": "assets/icons/32x32.png",
"72": "assets/icons/72x72.png",
"96": "assets/icons/96x96.png",
"128": "assets/icons/128x128.png"
},
"action": {
"default_icon": {
"16": "assets/icons/16x16.png",
"32": "assets/icons/32x32.png"
},
"default_popup": "popup/index.html",
"default_title": "Fai click per aprire"
},
"content_scripts": [
{
"js": [
"content/index.js"
],
"css": [
"injectable/index.css"
],
"matches": [
"*://slides.com/*"
]
}
],
"background": {
"service_worker": "background/index.js"
},
"web_accessible_resources": [
{
"resources": [
"assets/icons/*.png",
"assets/options/toggle-toolbar-overlay.gif",
"injectable/index.js"
],
"matches": [
"https://slides.com/*"
],
"use_dynamic_url": true
}
],
"permissions": [
"tabs",
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"*://slides.com/*"
]
}