18 lines
433 B
JSON
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" ]
|
||
|
}
|
||
|
]
|
||
|
}
|