Timeline.fm
Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!
什麼是Timeline.fm?
Timeline.fm是由S Ármin開發的Chrome擴展程式,該擴展的主要功能是“Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!”。
擴展截圖
下載Timeline.fm擴展crx文件
下載Timeline.fm擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
So, you're using Last.fm, and sometimes look back and check what you listened in the past? And you're also using Google Maps Timeline, and you sometimes look back and check where you were on a certain day? Well, now you can do both at the same time, as this extension will display your scrobbles right in the Timeline. It's not terribly useful, but it's fun! And it may help you remember feelings, details, little minutae of your life you wouldn't otherwise. Lifelogging is fun, and somewhat good for self-reflection. And may be a slippery slope into horrible bouts of nostalgia. Set your Last.fm user in the settings after installation: no login is required, but your scrobbles will only be shown if you've set your recent listening information to public (on Last.fm go to Settings -> Privacy, and uncheck "Hide recent listening information").
擴展基本資訊
名稱 | |
ID | eckfclnhmoemjbbkgeeoknfjfhgpaang |
官方網址 | https://chrome.google.com/webstore/detail/timelinefm/eckfclnhmoemjbbkgeeoknfjfhgpaang |
簡介 | Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where! |
檔案大小 | 34.39 KB |
安裝次數 | 91 |
目前版本 | 0.1.1 |
更新時間 | 2021-02-18 |
上架時間 | 2020-02-24 |
評分 | 5.00/5 共 1 次評分 |
開發者 | S Ármin |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
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\/" ] } |