Tracked
A browser extension to help source tracks.
Apa itu Tracked?
Tracked adalah ekstensi Chrome yang dikembangkan oleh http://tracked.am, dan fitur utamanya adalah "A browser extension to help source tracks.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tracked
Unduh file ekstensi Tracked dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | kkfebgfihpldcohdgdoaomjpjibihene |
URL Resmi | https://chrome.google.com/webstore/detail/tracked/kkfebgfihpldcohdgdoaomjpjibihene |
Deskripsi | A browser extension to help source tracks. |
Ukuran File | 1.04 MB |
Jumlah Instalasi | 326 |
Versi Saat Ini | 3.1.4 |
Terakhir Diperbarui | 2021-05-09 |
Tanggal Publikasi | 2020-06-17 |
Penilaian | 3.00/5 Total 4 Penilaian |
Pengembang | http://tracked.am |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://tracked.am |
URL Halaman Bantuan | https://www.tracked.am/support |
Bahasa yang Didukung | 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" } } |