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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย argenkiwi และคุณลักษณะหลักของมันคือ "An audio streaming extension that seeks for links to music and recordings on the sites you visit."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extereo Audio Player

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}