1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00
maloja/scrobblers/chromium/manifest.json

39 lines
554 B
JSON
Raw Normal View History

{
"name": "Maloja Scrobbler",
"version": "1.7",
"description": "Scrobbles tracks from various sites to your Maloja server",
"manifest_version": 2,
2020-09-04 17:36:35 +03:00
"permissions": [
"activeTab",
"tabs",
"storage",
"http://*/",
"https://*/",
"<all_urls>"
],
"background":
{
"scripts":
[
"background.js"
]
},
"browser_action":
{
"default_icon":
{
"128":"icon128.png",
"48":"icon48.png"
},
"default_popup": "settings.html",
"default_title": "Settings"
},
"icons":
{
"128":"icon128.png",
"48":"icon48.png"
}
}