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!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Timeline.fm 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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").                    

확장 프로그램 기본 정보

이름 Timeline.fm Timeline.fm
ID eckfclnhmoemjbbkgeeoknfjfhgpaang
공식 URL 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\/"
    ]
}