Background Music

An extension for Background Music

Background Musicคืออะไร?

Background Music เป็นส่วนขยายของ Chrome ที่พัฒนาโดย j0code และคุณลักษณะหลักของมันคือ "An extension for Background Music"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Background Music

ดาวน์โหลดไฟล์ส่วนขยาย Background Music ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        An extension for Background Music.  /  Eine Erweiterung für Hintergtundmusik.
You can play music in the background without having an extra window opened. A popup player is provided.  /  Sie können Musik im Hintergrund abspielen, ohne ein extra Fenster geöffnet zu haben. Ein Popup-Player ist enthalten.
There isn't an UI for adding Songs yet, but you can do so by using  /  Es gibt noch kein UI für das HInzufügen von Songs, aber Sie können stattdessen
addSong(url);
on the background page to add a song to the list.  /  auf der Hintergrundseite, um Songs zur Liste hinzuzufügen.
This will accept YouTube-Video-URLs, Spotify-Track-URLs and URLs ending with ".mp3". (This will NOT download the song)  /  Dies akzeptiert YouTube-Video-URLs, Spotify-Track-URLs und URLs, die auf ".mp3" enden.
For YouTube-Videos & Spotify-Tracks, the Song-Title & -Author is loaded. (Song-Author doesn't work for YT)  /  Bei YouTube-Videos und Spotify-Tracks wird der Song-Titel und -Author geladen. (Song-Autor funktioniert bei YT nicht)
YT-Videos and Spotify-Tracks can't be played yet.  /  YT-Videos und Spotify-Tracks können noch nicht abgespielt werden.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Background Music Background Music
ID fjipcaigekedackgihdhaafkjpnmipfh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/background-music/fjipcaigekedackgihdhaafkjpnmipfh
คำอธิบาย An extension for Background Music
ขนาดไฟล์ 11.2 KB
จำนวนการติดตั้ง 213
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-05-10
วันที่เผยแพร่ 2020-05-10
คะแนน 2.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา j0code
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://cohalejoja.selfhost.eu/
URL หน้าช่วยเหลือ https://cohalejoja.selfhost.eu/contact/discord.html
ภาษาที่รองรับ de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Background Music",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "settings.html",
    "manifest_version": 2,
    "name": "Background Music",
    "version": "1.0",
    "web_accessible_resources": [
        "settings.html"
    ],
    "description": "An extension for Background Music"
}