-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (33 loc) · 863 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
{
"name": "Blanking for Google Slides™",
"version": "1.0",
"description": "Adds blanking to Google Slides™. Simply press 'b' to blank out the slide, and again to reveal it.",
"manifest_version": 2,
"permissions": [
"https://docs.google.com/presentation/*",
"https://docs.google.com/*/presentation/*",
"tabs"
],
"content_scripts": [
{
"matches": [
"https://docs.google.com/*/presentation/*/present*slide*",
"https://docs.google.com/presentation/*/present*slide*"
],
"run_at": "document_idle",
"match_about_blank": false,
"all_frames": true,
"js": [
"jquery-3.3.1.slim.min.js",
"present.js"
]
}
],
"icons": {
"16": "logo-16.png",
"48": "logo-48.png",
"128": "logo-128.png",
"256": "logo-256.png",
"1000": "logo-1000.png"
}
}