Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fuwaa committed Aug 9, 2022
1 parent d0dfe92 commit 8667071
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Pint for GitHub",
"version": "2.0",
"version": "2.0.1",
"icons": {
"16": "pint-logo.png",
"48": "pint-logo.png",
Expand All @@ -21,27 +21,48 @@
"name": "Jariel Que",
"url": "https://github.com/fuwaa"
},
"host_permissions": ["https://*.github.com/"],
"host_permissions": [
"https://*.github.com/"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": ["https://*.github.com/*"],
"css": ["pint-css.css"],
"js": ["initial.js"]
"matches": [
"https://*.github.com/*"
],
"css": [
"pint-css.css"
],
"js": [
"initial.js"
]
},
{
"run_at": "document_end",
"matches": ["https://*.github.com/*"],
"js": ["initial.js"],
"css": ["unhide.css"]
"matches": [
"https://*.github.com/*"
],
"js": [
"initial.js"
],
"css": [
"unhide.css"
]
},
{
"run_at": "document_idle",
"matches": ["https://*.github.com/*"],
"js": ["initial.js"]
"matches": [
"https://*.github.com/*"
],
"js": [
"initial.js"
]
}
],
"permissions": ["storage", "scripting"],
"permissions": [
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
Expand Down

0 comments on commit 8667071

Please sign in to comment.