-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
46 lines (46 loc) · 1.29 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
{
"name": "Google Slides Auto Resize Speaker Notes",
"version": "1.2",
"manifest_version": 2,
"description": "Automatically resize the slide previews when the Speaker Notes window is resized, or drag the sidebar to manually select a size.",
"page_action": {
"default_icon": "img/icon-48.png",
"default_popup": "html/gsbn-popup.html",
"default_title": "Google Slides Auto Resize Speaker Notes"
},
"background": {
"scripts": [
"js/gsbn-background.js",
"js/gsbn-common.js"
],
"persistent": false
},
"permissions" : [
"declarativeContent",
"https://docs.google.com/presentation/*",
"https://docs.google.com/*/presentation/*",
"storage"
],
"icons": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png"
},
"options_page": "html/gsbn-options.html",
"content_scripts": [
{
"matches": [
"https://docs.google.com/*/presentation/*/present*slide*",
"https://docs.google.com/presentation/*/present*slide*",
"https://docs.google.com/presentation/present*slide*"
],
"match_about_blank" : true,
"all_frames" : true,
"js": [
"js/gsbn-common.js",
"js/gsbn.js"
]
}
],
"homepage_url": "https://github.com/daattali/gslides-betternotes-extension"
}