Audio tracker

This extension sends titles of tabs with audio to localhost.

What is Audio tracker?

Audio tracker is a Chrome extension developed by androsik.dev, and its main feature is "This extension sends titles of tabs with audio to localhost.".

Extension Screenshots

screenshot

Download Audio tracker Extension CRX File

Download Audio tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Audio tracker Audio tracker
ID hcpagpicgmcedfgahljaaijcfmjjiofc
Official URL https://chromewebstore.google.com/detail/audio-tracker/hcpagpicgmcedfgahljaaijcfmjjiofc
Description This extension sends titles of tabs with audio to localhost.
File Size 56.55 KB
Installation Count 69
Current Version 0.0.0.3
Last Updated 2020-08-07
Publish Date 2020-07-29
Rating 1.00/5 Total 1 Ratings
Developer androsik.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/anzhedro/audio_listener
Help Page URL https://github.com/anzhedro/audio_listener
Supported Languages 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"
    }
}