Timeline.fm

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

O que é Timeline.fm?

Timeline.fm é uma extensão do Chrome desenvolvida por S Ármin, e sua principal característica é "Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Timeline.fm

Baixe arquivos de extensão Timeline.fm no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Timeline.fm Timeline.fm
ID eckfclnhmoemjbbkgeeoknfjfhgpaang
URL Oficial https://chrome.google.com/webstore/detail/timelinefm/eckfclnhmoemjbbkgeeoknfjfhgpaang
Descrição Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!
Tamanho do Arquivo 34.39 KB
Contagem de Instalações 91
Versão Atual 0.1.1
Última Atualização 2021-02-18
Data de Publicação 2020-02-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor S Ármin
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}