Skip to content

Commit

Permalink
doc: update version to v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 8, 2023
1 parent 9281a2a commit 993100e
Showing 1 changed file with 53 additions and 39 deletions.
92 changes: 53 additions & 39 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,56 @@
{
"short_name": "Chorus",
"name": "Chorus - Spotify Enhancer",
"description": "Enhance Spotify with track snippets and skipping.",
"version": "1.3.2",
"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"
]
}
],
"permissions": ["activeTab", "tabs", "storage", "unlimitedStorage"],
"background": {
"service_worker": "background.js"
"short_name": "Chorus",
"name": "Chorus - Spotify Enhancer",
"description": "Enhance Spotify with track snippets and skipping.",
"version": "1.3.3",
"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"
]
}
],
"permissions": [
"activeTab",
"tabs",
"storage",
"unlimitedStorage"
],
"background": {
"service_worker": "background.js"
}
}

0 comments on commit 993100e

Please sign in to comment.