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 là gì?

Timeline.fm là một tiện ích mở rộng Chrome được phát triển bởi S Ármin, và tính năng chính của nó là "Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Timeline.fm

Tải xuống các tệp mở rộng Timeline.fm dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Timeline.fm Timeline.fm
ID eckfclnhmoemjbbkgeeoknfjfhgpaang
URL Chính Thức https://chrome.google.com/webstore/detail/timelinefm/eckfclnhmoemjbbkgeeoknfjfhgpaang
Mô tả Display your Last.fm scrobbles on your Google Maps Timeline. Because it's fun to see what you listened to where!
Kích Thước Tệp 34.39 KB
Số Lần Cài Đặt 91
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2021-02-18
Ngày Phát Hành 2020-02-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển S Ármin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}