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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Timeline.fm एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/"
    ]
}