-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (33 loc) · 846 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": "Trello Reminders",
"short_name": "Trello Reminders",
"description": "Chrome extension for Trello Reminders",
"version": "0.0.4",
"manifest_version": 2,
"permissions": [
"activeTab",
"https://api.trelloreminders.com"
],
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"css": [
"/bootstrap/css/bootstrap.css",
"/bootstrap/css/bootstrap-theme.css",
"/spinner.css"
],
"js": [
"/jquery/jquery.js",
"/bootstrap/js/bootstrap.js",
"/index.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"/fonts/*.woff",
"config.json"
]
}