-
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.
- Loading branch information
1 parent
a6cb5c6
commit 6e68f8d
Showing
3 changed files
with
243 additions
and
207 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"name": "chorus", | ||
"private": true, | ||
"type": "module", | ||
"version": "1.22.2", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"watch": "rollup -c -w", | ||
"prepare": "node .husky/install.mjs", | ||
"format": "prettier --write ." | ||
}, | ||
"devDependencies": { | ||
"husky": "9.0.11", | ||
"lint-staged": "15.2.2", | ||
"prettier": "3.2.5", | ||
"rollup": "3.28.1", | ||
"rollup-plugin-chrome-extension": "3.6.12" | ||
}, | ||
"lint-staged": { | ||
"*.{js,jsx,json,css,md}": "prettier --write" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "pnpm lint-staged" | ||
} | ||
"name": "chorus", | ||
"private": true, | ||
"type": "module", | ||
"version": "1.22.3", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"watch": "rollup -c -w", | ||
"prepare": "node .husky/install.mjs", | ||
"format": "prettier --write ." | ||
}, | ||
"devDependencies": { | ||
"husky": "9.0.11", | ||
"lint-staged": "15.2.2", | ||
"prettier": "3.2.5", | ||
"rollup": "3.28.1", | ||
"rollup-plugin-chrome-extension": "3.6.12" | ||
}, | ||
"lint-staged": { | ||
"*.{js,jsx,json,css,md}": "prettier --write" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "pnpm lint-staged" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,95 +1,112 @@ | ||
{ | ||
"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.22.2", | ||
"manifest_version": 3, | ||
"author": "cdrani", | ||
"action": { | ||
"default_icon": { | ||
"32": "icons/logo.png" | ||
}, | ||
"default_popup": "popup/index.html" | ||
"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.22.3", | ||
"manifest_version": 3, | ||
"author": "cdrani", | ||
"action": { | ||
"default_icon": { | ||
"32": "icons/logo.png" | ||
}, | ||
"icons": { | ||
"16": "icons/icon16.png", | ||
"24": "icons/icon24.png", | ||
"48": "icons/icon48.png", | ||
"64": "icons/icon64.png", | ||
"128": "icons/icon128.png" | ||
"default_popup": "popup/index.html" | ||
}, | ||
"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": [ | ||
"content.js" | ||
], | ||
"css": [ | ||
"styles.css" | ||
], | ||
"matches": [ | ||
"*://open.spotify.com/*" | ||
] | ||
} | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"matches": [ | ||
"*://open.spotify.com/*" | ||
], | ||
"resources": [ | ||
"styles.css", | ||
"utils/*.js", | ||
"models/*.js", | ||
"events/*.js", | ||
"components/*.js", | ||
"observers/*.js", | ||
"stores/*.js", | ||
"actions/*.js", | ||
"data/*.js", | ||
"services/*.js", | ||
"lib/**/*.js", | ||
"lib/sounds/*.wav" | ||
] | ||
} | ||
], | ||
"commands": { | ||
"on/off": { | ||
"description": "Toggle Extension On/Off" | ||
}, | ||
"loop": { | ||
"description": "Loop/UnLoop Snip/Track" | ||
}, | ||
"next": { | ||
"description": "Next Track" | ||
}, | ||
"play/pause": { | ||
"description": "Play/Pause" | ||
}, | ||
"repeat": { | ||
"description": "Repeat Track" | ||
}, | ||
"shuffle": { | ||
"description": "Shuffle Tracks" | ||
}, | ||
"previous": { | ||
"description": "Previous Track" | ||
}, | ||
"settings": { | ||
"description": "Display Controls" | ||
}, | ||
"mute/unmute": { | ||
"description": "Mute/Unmute Track" | ||
}, | ||
"seek-fastforward": { | ||
"description": "Seek Track Forwards" | ||
}, | ||
"save/unsave": { | ||
"description": "Save/Unsave Track" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"run_at": "document_idle", | ||
"js": ["content.js"], | ||
"css": ["styles.css"], | ||
"matches": ["*://open.spotify.com/*"] | ||
} | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"matches": ["*://open.spotify.com/*"], | ||
"resources": [ | ||
"styles.css", | ||
"utils/*.js", | ||
"models/*.js", | ||
"events/*.js", | ||
"components/*.js", | ||
"observers/*.js", | ||
"stores/*.js", | ||
"actions/*.js", | ||
"data/*.js", | ||
"services/*.js", | ||
"lib/**/*.js", | ||
"lib/sounds/*.wav" | ||
] | ||
} | ||
], | ||
"commands": { | ||
"on/off": { | ||
"description": "Toggle Extension On/Off" | ||
}, | ||
"loop": { | ||
"description": "Loop/UnLoop Snip/Track" | ||
}, | ||
"next": { | ||
"description": "Next Track" | ||
}, | ||
"play/pause": { | ||
"description": "Play/Pause" | ||
}, | ||
"repeat": { | ||
"description": "Repeat Track" | ||
}, | ||
"shuffle": { | ||
"description": "Shuffle Tracks" | ||
}, | ||
"previous": { | ||
"description": "Previous Track" | ||
}, | ||
"settings": { | ||
"description": "Display Controls" | ||
}, | ||
"mute/unmute": { | ||
"description": "Mute/Unmute Track" | ||
}, | ||
"seek-fastforward": { | ||
"description": "Seek Track Forwards" | ||
}, | ||
"save/unsave": { | ||
"description": "Save/Unsave Track" | ||
}, | ||
"seek-rewind": { | ||
"description": "Seek Track Backwards" | ||
}, | ||
"block-track": { | ||
"description": "Add track to block list" | ||
} | ||
"seek-rewind": { | ||
"description": "Seek Track Backwards" | ||
}, | ||
"permissions": ["tabs", "storage", "activeTab", "scripting", "webRequest", "unlimitedStorage"], | ||
"host_permissions": ["*://*.spotify.com/*"], | ||
"background": { | ||
"type": "module", | ||
"service_worker": "background.js" | ||
"block-track": { | ||
"description": "Add track to block list" | ||
} | ||
}, | ||
"permissions": [ | ||
"tabs", | ||
"storage", | ||
"activeTab", | ||
"scripting", | ||
"webRequest", | ||
"unlimitedStorage" | ||
], | ||
"host_permissions": [ | ||
"*://*.spotify.com/*" | ||
], | ||
"background": { | ||
"type": "module", | ||
"service_worker": "background.js" | ||
} | ||
} |
Oops, something went wrong.