maloja/auxiliary/chromium_scrobbler/maloja-scrobbler/manifest.json

37 lines
532 B
JSON
Raw Normal View History

{
"name": "Maloja Scrobbler",
2023-03-28 01:06:59 +03:00
"version": "1.13",
"description": "Scrobbles tracks from various sites to your Maloja server",
"manifest_version": 2,
2020-09-04 17:36:35 +03:00
"permissions": [
"tabs",
"storage",
"http://*/",
2021-10-14 19:02:11 +03:00
"https://*/"
],
"background":
{
"scripts":
[
"background.js"
]
},
"browser_action":
{
"default_icon":
{
"128":"icon128.png",
"48":"icon48.png"
},
"default_popup": "settings.html",
2020-11-11 19:45:40 +03:00
"default_title": "Maloja Scrobbler"
},
"icons":
{
"128":"icon128.png",
"48":"icon48.png"
}
}