Audio tracker

This extension sends titles of tabs with audio to localhost.

Qu'est-ce que Audio tracker ?

Audio tracker est une extension Chrome développée par androsik.dev, et sa fonction principale est "This extension sends titles of tabs with audio to localhost.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Audio tracker

Téléchargez les fichiers d'extension Audio tracker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Audio tracker Audio tracker
ID hcpagpicgmcedfgahljaaijcfmjjiofc
URL Officiel https://chromewebstore.google.com/detail/audio-tracker/hcpagpicgmcedfgahljaaijcfmjjiofc
Description This extension sends titles of tabs with audio to localhost.
Taille du Fichier 56.55 KB
Nombre d'Installations 69
Version Actuelle 0.0.0.3
Dernière Mise à Jour 2020-08-07
Date de Publication 2020-07-29
Évaluation 1.00/5 Total 1 Évaluations
Développeur androsik.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/anzhedro/audio_listener
URL de la Page d'Aide https://github.com/anzhedro/audio_listener
Langues Prises en Charge 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"
    }
}