-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (33 loc) · 765 Bytes
/
manifest.json
File metadata and controls
38 lines (33 loc) · 765 Bytes
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
{
"manifest_version": 2,
"name": "Timeline.fm",
"version": "0.1.1",
"description": "Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!",
"icons": {
"128": "res/logo_128.png"
},
"background": {
"scripts": ["oninstall.js"],
"persistent": false
},
"content_scripts": [{
"js": [
"lib/moment.min.js",
"timeline.js",
"lastfm.js",
"main.js"
],
"matches": ["https://www.google.com/maps/timeline*"],
"run_at": "document_start"
}],
"options_ui": {
"page": "options_page.html",
"chrome_style": true,
"open_in_tab": true
},
"permissions": [
"notifications",
"storage",
"https://ws.audioscrobbler.com/"
]
}