Skip to content

Commit

Permalink
0.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
mantou132 committed Apr 12, 2020
1 parent 80f42ec commit 4807867
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spotify-lyrics",
"version": "0.0.18",
"version": "0.0.19",
"description": "",
"scripts": {
"lint": "tsc --noEmit && eslint --ext .ts --fix src/",
Expand Down
14 changes: 10 additions & 4 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Spotify Lyrics",
"version": "0.0.18",
"version": "0.0.19",
"manifest_version": 2,
"description": "Spotify Web Player lyrics plugin, lyric display in PiP(album cover) window.",
"web_accessible_resources": [
Expand All @@ -11,12 +11,18 @@
"tabs"
],
"background": {
"scripts": ["background.js"]
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": ["*://open.spotify.com/*"],
"js": ["content.js"],
"matches": [
"*://open.spotify.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
Expand Down

0 comments on commit 4807867

Please sign in to comment.