Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tidal Discord Rich Presence",
"description": "An application that tracks Tidal Web Player activity and communicates with an external app to update Discord's Rich Presence",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "scripts\/background.js"
},
"permissions": [
"tabs"
],
"host_permissions": [
"http:\/\/localhost:3001\/message\/*",
"https:\/\/listen.tidal.com\/*"
],
"content_scripts": [
{
"js": [
"scripts\/content.js"
],
"matches": [
"https:\/\/*.tidal.com\/*"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
}
},
"icons": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
}
}