-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (31 loc) · 1017 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
35
{
"manifest_version": 2,
"name": "Laidle",
"version": "1.1",
"background": {
"scripts": ["src/scripts/background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "src/views/popup.html",
"default_icons": {
"16": "resources/icon16.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
}
},
"content_scripts": [
],
"description": "Laidle is a Chrome extension that generates a comprehensive grocery list from recipes collected in browser!",
"icons": {
"16": "resources/icon16.png",
"48": "resources/icon48.png",
"128": "resources/icon128.png"
},
"homepage_url": "https://www.samuel-glenn.com",
"permissions": [
"storage"
],
"options_page": "src/views/options.html",
"content_security_policy": "script-src 'self' https://stackpath.bootstrapcdn.com https://code.jquery.com https://cdn.jsdelivr.net https://unpkg.com https://cdnjs.buymeacoffee.com https://www.buymeacoffee.com; object-src 'self'"
}