Audio tracker

This extension sends titles of tabs with audio to localhost.

Audio trackerとは何ですか?

Audio trackerはandrosik.devによって開発されたChromeの拡張機能で、その主な機能は「This extension sends titles of tabs with audio to localhost.」です。

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

screenshot

Audio tracker拡張機能のCRXファイルをダウンロード

Audio tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Extension tracks tabs with audio and sends post requests with tabs titles to localhost:8080.                    

拡張機能の基本情報

名前 Audio tracker Audio tracker
ID hcpagpicgmcedfgahljaaijcfmjjiofc
公式URL https://chromewebstore.google.com/detail/audio-tracker/hcpagpicgmcedfgahljaaijcfmjjiofc
説明 This extension sends titles of tabs with audio to localhost.
ファイルサイズ 56.55 KB
インストール数 69
現在のバージョン 0.0.0.3
最終更新日 2020-08-07
公開日 2020-07-29
評価 1.00/5 合計 1 レビュー
開発者 androsik.dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/anzhedro/audio_listener
ヘルプページのURL https://github.com/anzhedro/audio_listener
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Audio tracker",
    "description": "This extension sends titles of tabs with audio to localhost.",
    "version": "0.0.0.3",
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/localhost\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "common.js",
                "jquery-3.5.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "common.js",
            "background.js",
            "jquery-3.5.1.min.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Audio Listener",
        "default_popup": "popup.html"
    }
}