From 993100ec6bb5b0eb88e926dea8f2ce20114ed00c Mon Sep 17 00:00:00 2001 From: Github Action Date: Tue, 8 Aug 2023 20:36:01 +0000 Subject: [PATCH] doc: update version to v1.3.3 --- manifest.json | 92 +++++++++++++++++++++++++++++---------------------- 1 file changed, 53 insertions(+), 39 deletions(-) diff --git a/manifest.json b/manifest.json index 477821d8..fa8b6f70 100644 --- a/manifest.json +++ b/manifest.json @@ -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" + } }