Skip to content

Commit

Permalink
docs: bump version to v1.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 27, 2024
1 parent a6cb5c6 commit 6e68f8d
Show file tree
Hide file tree
Showing 3 changed files with 243 additions and 207 deletions.
48 changes: 24 additions & 24 deletions package.json
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"
}
}
}
195 changes: 106 additions & 89 deletions src/manifest.chrome.json
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"
}
}
Loading

0 comments on commit 6e68f8d

Please sign in to comment.