Web Scrobbler

Scrobble music all around the web!

Web Scrobblerคืออะไร?

Web Scrobbler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Web Scrobbler team และคุณลักษณะหลักของมันคือ "Scrobble music all around the web!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Web Scrobbler helps online music listeners to scrobble their playback history.

The extension is developed by a great number of contributors.

Join our Discord server: https://discord.com/invite/u99wNWw

IF THE EXTENSION STOPS WORKING, REPORT ON GITHUB ONLY: https://github.com/web-scrobbler/web-scrobbler/issues.

Supported services:
Last.fm
Libre.fm
ListenBrainz

Usage

You should click on a notification that is shown when the extension is loaded first time. Then, you should grant access to your accounts.

The scrobbler status is shown on the right side of the address bar. Optionally you can enable desktop notifications of now playing songs.

You can manually correct the song title by clicking on the scrobbler icon, if the song doesn't get recognized. Just click on the question mark icon and fill correct song info.

See the options page for more information.                    

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

ชื่อ Web Scrobbler Web Scrobbler
ID hhinaapppaileiechjoiifaancjggfjm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-scrobbler/hhinaapppaileiechjoiifaancjggfjm
คำอธิบาย Scrobble music all around the web!
ขนาดไฟล์ 757 KB
จำนวนการติดตั้ง 164,058
เวอร์ชันปัจจุบัน 3.6.2
อัปเดตครั้งล่าสุด 2024-02-29
วันที่เผยแพร่ 2020-07-05
คะแนน 3.78/5 รวมทั้งหมด 2813 คะแนน
ผู้พัฒนา Web Scrobbler team
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://web-scrobbler.com
URL หน้าช่วยเหลือ https://github.com/web-scrobbler/web-scrobbler
URL หน้านโยบายความเป็นส่วนตัว https://github.com/web-scrobbler/web-scrobbler/blob/master/src/_locales/en/privacy.md
ภาษาที่รองรับ id,de,en,en-GB,en-US,es,lt,pl,pt-BR,pt-PT,fi,el,ru,zh-TW,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web Scrobbler",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "3.6.2",
    "permissions": [
        "storage",
        "contextMenus",
        "notifications",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/main.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "connectors\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "src\/ui\/options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icons\/icon_main_16.png",
        "48": "icons\/icon_main_48.png",
        "96": "icons\/icon_main_96.png",
        "128": "icons\/icon_main_128.png",
        "256": "icons\/icon_main_256.png",
        "512": "icons\/icon_main_512.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/action_unsupported_16_light.png",
            "19": "icons\/action_unsupported_19_light.png",
            "32": "icons\/action_unsupported_32_light.png",
            "38": "icons\/action_unsupported_38_light.png"
        },
        "default_title": "__MSG_pageActionUnsupported__",
        "default_popup": "src\/ui\/popup\/index.html"
    },
    "commands": {
        "toggle-connector": {
            "description": "__MSG_hotkeyToggleConnector__"
        },
        "love-song": {
            "description": "__MSG_hotkeyLoveSong__"
        },
        "unlove-song": {
            "description": "__MSG_hotkeyUnloveSong__"
        }
    },
    "background": {
        "service_worker": "background\/main.js"
    }
}