Add Chrome extension

This commit is contained in:
Jonathan Cremin 2014-12-07 22:06:08 +00:00
parent b9005ad30d
commit cda69ea472
6 changed files with 75 additions and 0 deletions

23
chrome/manifest.json Normal file
View file

@ -0,0 +1,23 @@
{
"name" : "Match Audio",
"version" : "0.2.0",
"description" : "Match Audio makes sharing from music services better.",
"background" : {
"persistent": false,
"scripts": [ "background.js" ]
},
"page_action" : {
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"permissions" : [ "declarativeContent", "https://match.audio/" ],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2
}