Skip to content

Commit

Permalink
[auto] release v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudiohbsantos committed Jun 30, 2022
1 parent a956ede commit 08e11da
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
30 changes: 23 additions & 7 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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/*"
]
}
]
}

0 comments on commit 08e11da

Please sign in to comment.