Tracked
A browser extension to help source tracks.
什么是Tracked?
Tracked是由http://tracked.am开发的Chrome扩展程序,该扩展的主要功能是“A browser extension to help source tracks.”。
扩展截图
下载Tracked扩展crx文件
下载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" } } |