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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}