auto-audio-recorder/extension-firefox/manifest.json
2019-09-18 23:05:44 -04:00

18 lines
433 B
JSON

{
"manifest_version": 2,
"name": "Spotify Song Information Sender",
"version": "1.0",
"description": "Sends spotify song data to a server as you listen.",
"permissions": [
"*://localhost/*"
],
"background": {
"scripts": [ "background.js" ]
},
"content_scripts": [
{
"matches": [ "*://open.spotify.com/*" ],
"js": [ "content.js" ]
}
]
}