Audio tracker

This extension sends titles of tabs with audio to localhost.

Audio tracker là gì?

Audio tracker là một tiện ích mở rộng Chrome được phát triển bởi androsik.dev, và tính năng chính của nó là "This extension sends titles of tabs with audio to localhost.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Audio tracker

Tải xuống các tệp mở rộng Audio tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Audio tracker Audio tracker
ID hcpagpicgmcedfgahljaaijcfmjjiofc
URL Chính Thức https://chromewebstore.google.com/detail/audio-tracker/hcpagpicgmcedfgahljaaijcfmjjiofc
Mô tả This extension sends titles of tabs with audio to localhost.
Kích Thước Tệp 56.55 KB
Số Lần Cài Đặt 69
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2020-08-07
Ngày Phát Hành 2020-07-29
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển androsik.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/anzhedro/audio_listener
URL Trang Trợ Giúp https://github.com/anzhedro/audio_listener
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}