Tracked

A browser extension to help source tracks.

Trackedとは何ですか?

Trackedはhttp://tracked.amによって開発されたChromeの拡張機能で、その主な機能は「A browser extension to help source tracks.」です。

拡張機能のスクリーンショット

screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Tracked Tracked
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
Eメール [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"
    }
}