Tracked
A browser extension to help source tracks.
Wat is Tracked?
Tracked is een Chrome-extensie ontwikkeld door http://tracked.am, en de belangrijkste functie is "A browser extension to help source tracks.".
Extensie Screenshots
Download het CRX-bestand van de extensie Tracked
Download Tracked-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | kkfebgfihpldcohdgdoaomjpjibihene |
Officiële URL | https://chrome.google.com/webstore/detail/tracked/kkfebgfihpldcohdgdoaomjpjibihene |
Beschrijving | A browser extension to help source tracks. |
Bestandsgrootte | 1.04 MB |
Aantal Installaties | 326 |
Huidige Versie | 3.1.4 |
Laatst Bijgewerkt | 2021-05-09 |
Publicatiedatum | 2020-06-17 |
Beoordeling | 3.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | http://tracked.am |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://tracked.am |
Help Pagina-URL | https://www.tracked.am/support |
Ondersteunde Talen | 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" } } |