Audio tracker

This extension sends titles of tabs with audio to localhost.

Wat is Audio tracker?

Audio tracker is een Chrome-extensie ontwikkeld door androsik.dev, en de belangrijkste functie is "This extension sends titles of tabs with audio to localhost.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Audio tracker

Download Audio tracker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Audio tracker Audio tracker
ID hcpagpicgmcedfgahljaaijcfmjjiofc
Officiële URL https://chromewebstore.google.com/detail/audio-tracker/hcpagpicgmcedfgahljaaijcfmjjiofc
Beschrijving This extension sends titles of tabs with audio to localhost.
Bestandsgrootte 56.55 KB
Aantal Installaties 69
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2020-08-07
Publicatiedatum 2020-07-29
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar androsik.dev
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/anzhedro/audio_listener
Help Pagina-URL https://github.com/anzhedro/audio_listener
Ondersteunde Talen 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"
    }
}