bump version

This commit is contained in:
fuwaa 2022-08-09 17:00:46 +08:00
parent d0dfe92db6
commit 86670716db
No known key found for this signature in database
GPG key ID: 61CF2722CAB10289

View file

@ -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",
@ -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"
},