Tracked

A browser extension to help source tracks.

Qu'est-ce que Tracked ?

Tracked est une extension Chrome développée par http://tracked.am, et sa fonction principale est "A browser extension to help source tracks.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tracked

Téléchargez les fichiers d'extension Tracked au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tracked Tracked
ID kkfebgfihpldcohdgdoaomjpjibihene
URL Officiel https://chrome.google.com/webstore/detail/tracked/kkfebgfihpldcohdgdoaomjpjibihene
Description A browser extension to help source tracks.
Taille du Fichier 1.04 MB
Nombre d'Installations 326
Version Actuelle 3.1.4
Dernière Mise à Jour 2021-05-09
Date de Publication 2020-06-17
Évaluation 3.00/5 Total 4 Évaluations
Développeur http://tracked.am
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://tracked.am
URL de la Page d'Aide https://www.tracked.am/support
Langues Prises en Charge 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"
    }
}