TracklistTube

Display Tracklists for YouTube DJ Videos

What is TracklistTube?

TracklistTube is a Chrome extension developed by Martin Kwan, and its main feature is "Display Tracklists for YouTube DJ Videos".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download TracklistTube Extension CRX File

Download TracklistTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Find Tracklists and Timestamps for your favorite, popular YouTube DJ Mixes

✔ Display current song playing in the video, in real time
✔ Ability to navigate to individual songs in DJ mix
✔ Add songs to your Spotify library
✔ Create a new Spotify playlist with tracks from the DJ set
✔ Dark Mode User Interface                    

Extension Basic Information

Name TracklistTube TracklistTube
ID mgpblmigodgdkobnahpoflfgceabgfgb
Official URL https://chromewebstore.google.com/detail/tracklisttube/mgpblmigodgdkobnahpoflfgceabgfgb
Description Display Tracklists for YouTube DJ Videos
File Size 233 KB
Installation Count 137
Current Version 0.0.7
Last Updated 2021-09-19
Publish Date 2021-02-16
Rating 5.00/5 Total 3 Ratings
Developer Martin Kwan
Email [email protected]
Payment Type free
Privacy Policy Page URL https://tracklist-tube.herokuapp.com/privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TracklistTube",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "Display Tracklists for YouTube DJ Videos",
    "permissions": [
        "storage",
        "identity",
        "activeTab"
    ],
    "icons": {
        "16": "icons\/dj-16.png",
        "48": "icons\/dj-48.png",
        "128": "icons\/dj-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/dj-19.png",
        "default_title": "TracklistTube",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "src\/inject\/initialize.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/styles.css",
                "css\/fontawesome.min.css",
                "css\/regular.css",
                "css\/brands.css",
                "css\/solid.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/fontawesome.min.css",
        "css\/regular.css",
        "css\/brands.css",
        "css\/solid.css",
        "webfonts\/*"
    ]
}