Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudiohbsantos committed Dec 1, 2021
2 parents 5c8f7b6 + 27d8891 commit 67e45bb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 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.4.4",
"version": "1.5.0",
"description": "Browser Extension that enhances the GitHub file browser with material icons.",
"main": "src/main.js",
"author": "Claudio Santos",
Expand Down
14 changes: 10 additions & 4 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.4.4",
"version": "1.5.0",
"manifest_version": 2,
"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,10 +12,16 @@
},
"content_scripts": [
{
"matches": ["*://*.github.com/*"],
"js": ["./main.js"],
"matches": [
"*://*.github.com/*"
],
"js": [
"./main.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": ["svg/*.svg"]
"web_accessible_resources": [
"svg/*.svg"
]
}

0 comments on commit 67e45bb

Please sign in to comment.