Extereo Audio Player

An audio streaming extension that seeks for links to music and recordings on the sites you visit.

Extereo Audio Player là gì?

Extereo Audio Player là một tiện ích mở rộng Chrome được phát triển bởi argenkiwi, và tính năng chính của nó là "An audio streaming extension that seeks for links to music and recordings on the sites you visit.".

Ả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 Extereo Audio Player

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

                        Extereo is a Web Extension which scans for references to audio sources in the sites you visit and enables you to easily create playlists with them which you can listen to while you browse the web without having to keep multiple tabs open.

UPDATE: after the Chrome Web Store forces extensions to use Manifest V3, this extension will no longer work as background audio playback will not be supported anymore.                    

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

Tên Extereo Audio Player Extereo Audio Player
ID aokleaidncgnfejhkddhfobfffalfilm
URL Chính Thức https://chromewebstore.google.com/detail/extereo-audio-player/aokleaidncgnfejhkddhfobfffalfilm
Mô tả An audio streaming extension that seeks for links to music and recordings on the sites you visit.
Kích Thước Tệp 409 KB
Số Lần Cài Đặt 1,148
Phiên Bản Hiện Tại 4.1.2
Cập Nhật Lần Cuối 2022-03-17
Ngày Phát Hành 2020-04-08
Đánh Giá 4.40/5 Tổng số 20 Đánh Giá
Nhà Phát Triển argenkiwi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extereo Audio Player",
    "version": "4.1.2",
    "short_name": "Extereo",
    "description": "An audio streaming extension that seeks for links to music and recordings on the sites you visit.",
    "author": "Leandro M. Peralta",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Open Extereo Audio Player",
        "default_popup": "popup.html"
    },
    "commands": {
        "prev-track": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Play Previous",
            "global": true
        },
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Toggle Play\/Pause",
            "global": true
        },
        "next-track": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Play Next",
            "global": true
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "optional_permissions": [
        "downloads"
    ]
}