Timeline.fm

Timeline.fm

Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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/"
  ]
}