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
官方網址 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
電子郵箱 [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"
    }
}