Extereo Audio Player

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

Extereo Audio Playerとは何ですか?

Extereo Audio Playerはargenkiwiによって開発されたChromeの拡張機能で、その主な機能は「An audio streaming extension that seeks for links to music and recordings on the sites you visit.」です。

拡張機能のスクリーンショット

screenshot

Extereo Audio Player拡張機能のCRXファイルをダウンロード

Extereo Audio Player拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Extereo Audio Player Extereo Audio Player
ID aokleaidncgnfejhkddhfobfffalfilm
公式URL https://chromewebstore.google.com/detail/extereo-audio-player/aokleaidncgnfejhkddhfobfffalfilm
説明 An audio streaming extension that seeks for links to music and recordings on the sites you visit.
ファイルサイズ 409 KB
インストール数 1,148
現在のバージョン 4.1.2
最終更新日 2022-03-17
公開日 2020-04-08
評価 4.40/5 合計 20 レビュー
開発者 argenkiwi
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}