Tracked
A browser extension to help source tracks.
Что такое Tracked?
Tracked - это расширение Chrome, разработанное http://tracked.am, и его основная функция - "A browser extension to help source tracks.".
Снимки экрана расширения
Скачать файл CRX расширения Tracked
Скачайте файлы расширений Tracked в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | kkfebgfihpldcohdgdoaomjpjibihene |
Официальный URL | https://chrome.google.com/webstore/detail/tracked/kkfebgfihpldcohdgdoaomjpjibihene |
Описание | A browser extension to help source tracks. |
Размер файла | 1.04 MB |
Количество установок | 326 |
Текущая Версия | 3.1.4 |
Последнее Обновление | 2021-05-09 |
Дата публикации | 2020-06-17 |
Рейтинг | 3.00/5 Всего 4 оценок |
Разработчик | http://tracked.am |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://tracked.am |
URL страницы помощи | https://www.tracked.am/support |
Поддерживаемые языки | 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" } } |