-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: chrome manifest.json removed during release workflow (#97)
* fix: recover deleted/lost chrome manifest.json * fix: distinct args in manifest.json version update
- Loading branch information
Showing
2 changed files
with
61 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"short_name": "Chorus", | ||
"name": "Chorus - Spotify Enhancer", | ||
"description": "Enhance Spotify with controls to save favourite snips, auto-skip tracks, and set global and custom speed. More to come!", | ||
"version": "1.6.0", | ||
"manifest_version": 3, | ||
"author": "cdrani", | ||
"action": {}, | ||
"icons": { | ||
"16": "icons/icon16.png", | ||
"24": "icons/icon24.png", | ||
"48": "icons/icon48.png", | ||
"64": "icons/icon64.png", | ||
"128": "icons/icon128.png" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"run_at": "document_idle", | ||
"js": [ | ||
"utils/state.js", | ||
"content-script.js" | ||
], | ||
"css": [ | ||
"styles.css" | ||
], | ||
"matches": [ | ||
"*://open.spotify.com/*" | ||
] | ||
} | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"matches": [ | ||
"*://open.spotify.com/*" | ||
], | ||
"resources": [ | ||
"utils/*.js", | ||
"models/*.js", | ||
"events/*.js", | ||
"components/*.js", | ||
"observers/*.js", | ||
"stores/*.js", | ||
"actions/*.js", | ||
"data/*.js" | ||
] | ||
} | ||
], | ||
"permissions": [ | ||
"activeTab", | ||
"tabs", | ||
"storage", | ||
"unlimitedStorage" | ||
], | ||
"background": { | ||
"service_worker": "background.js" | ||
} | ||
} |