From 08e11da5f0d9006d60d35f5d4343c640d50b7b5e Mon Sep 17 00:00:00 2001 From: Claudiohbsantos Date: Thu, 30 Jun 2022 02:34:00 +0000 Subject: [PATCH] [auto] release v1.6.0 --- package-lock.json | 2 +- package.json | 2 +- src/manifest.json | 30 +++++++++++++++++++++++------- 3 files changed, 25 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index fd49b329..00043837 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "github-material-icons-extension", - "version": "1.5.10", + "version": "1.6.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index bc057889..2723b2f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-material-icons-extension", - "version": "1.5.10", + "version": "1.6.0", "description": "Browser Extension that enhances the GitHub file browser with material icons.", "main": "src/main.js", "author": "Claudio Santos", diff --git a/src/manifest.json b/src/manifest.json index 9007a096..1657ea81 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,6 +1,6 @@ { "name": "Material Icons for GitHub", - "version": "1.5.10", + "version": "1.6.0", "manifest_version": 3, "description": "Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.", "homepage_url": "https://github.com/Claudiohbsantos/github-material-icons-extension", @@ -12,13 +12,29 @@ }, "content_scripts": [ { - "matches": ["*://*.github.com/*", "*://*.bitbucket.org/*", "*://dev.azure.com/*", "*://*.gitea.com/*"], - "js": ["./main.js"], + "matches": [ + "*://*.github.com/*", + "*://*.bitbucket.org/*", + "*://dev.azure.com/*", + "*://*.gitea.com/*" + ], + "js": [ + "./main.js" + ], "run_at": "document_start" } ], - "web_accessible_resources": [{ - "resources": ["*.svg"], - "matches": ["*://*.github.com/*", "*://*.bitbucket.org/*", "*://dev.azure.com/*", "*://*.gitea.com/*"] - }] + "web_accessible_resources": [ + { + "resources": [ + "*.svg" + ], + "matches": [ + "*://*.github.com/*", + "*://*.bitbucket.org/*", + "*://dev.azure.com/*", + "*://*.gitea.com/*" + ] + } + ] }