CurrentSong

Implements a client to send the current active tab to a local server

CurrentSong là gì?

CurrentSong là một tiện ích mở rộng Chrome được phát triển bởi Nerixyz, và tính năng chính của nó là "Implements a client to send the current active tab to a local server".

Ả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 CurrentSong

Tải xuống các tệp mở rộng CurrentSong 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

                        This extension enables the Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

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

Tên CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
URL Chính Thức https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Mô tả Implements a client to send the current active tab to a local server
Kích Thước Tệp 66.77 KB
Số Lần Cài Đặt 648
Phiên Bản Hiện Tại 0.5.1
Cập Nhật Lần Cuối 2021-04-05
Ngày Phát Hành 2020-09-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Nerixyz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Nerixyz/current-song-overlay
URL Trang Trợ Giúp https://github.com/Nerixyz/current-song-overlay/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CurrentSong",
    "version": "0.5.1",
    "description": "Implements a client to send the current active tab to a local server",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.neverthink.tv\/*"
            ],
            "js": [
                "content-scripts\/neverthink.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{02914143-ede8-492c-8ad4-8a3af03f75bb}",
            "strict_min_version": "78.0"
        }
    }
}