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
电子邮箱 [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"
    }
}