Tracked

A browser extension to help source tracks.

What is Tracked?

Tracked is a Chrome extension developed by http://tracked.am, and its main feature is "A browser extension to help source tracks.".

Extension Screenshots

screenshot
screenshot

Download Tracked Extension CRX File

Download Tracked 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

                        A chrome extension for discovering music. Tracked is built to be sensitive to the particular needs of DJs and to feel like a natural extension of their instrument, that just happens to live in the browser.                    

Extension Basic Information

Name Tracked Tracked
ID kkfebgfihpldcohdgdoaomjpjibihene
Official URL https://chrome.google.com/webstore/detail/tracked/kkfebgfihpldcohdgdoaomjpjibihene
Description A browser extension to help source tracks.
File Size 1.04 MB
Installation Count 326
Current Version 3.1.4
Last Updated 2021-05-09
Publish Date 2020-06-17
Rating 3.00/5 Total 4 Ratings
Developer http://tracked.am
Email [email protected]
Payment Type free
Extension Website https://tracked.am
Help Page URL https://www.tracked.am/support
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tracked",
    "description": "A browser extension to help source tracks.",
    "version": "3.1.4",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com https:\/\/cdn.mxpnl.com\/libs\/mixpanel-2-latest.min.js; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "assets\/content-scripts\/YoutubeContent.js"
            ]
        },
        {
            "matches": [
                "https:\/\/soundcloud.com\/*",
                "http:\/\/soundcloud.com\/*"
            ],
            "js": [
                "assets\/content-scripts\/SoundCloudContent.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost\/*",
            "http:\/\/app.tracked.am\/*",
            "https:\/\/app.tracked.am\/*"
        ]
    },
    "background": {
        "scripts": [
            "background-scripts\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "index.html"
    }
}