combine.fm/chrome/manifest.json

36 lines
789 B
JSON
Raw Normal View History

2014-12-07 22:06:08 +00:00
{
"name" : "Match Audio",
"version" : "0.3.1",
2014-12-07 22:06:08 +00:00
"description" : "Match Audio makes sharing from music services better.",
"background" : {
"persistent": false,
"scripts": [
"src/background.js"
]
2014-12-07 22:06:08 +00:00
},
"content_scripts": [
{
"matches": ["https://play.google.com/music/*"],
"js": ["src/lib/selector-listener.js", "src/google.js"]
}
],
2014-12-07 22:06:08 +00:00
"page_action" : {
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_title": "Find matches for this music on Match Audio"
2014-12-07 22:06:08 +00:00
},
"permissions" : [
"declarativeContent",
"https://play.google.com/music"
],
2014-12-07 22:06:08 +00:00
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2
}