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, "manifest_version": 3,
"name": "Pint for GitHub", "name": "Pint for GitHub",
"version": "2.0", "version": "2.0.1",
"icons": { "icons": {
"16": "pint-logo.png", "16": "pint-logo.png",
"48": "pint-logo.png", "48": "pint-logo.png",
@ -21,27 +21,48 @@
"name": "Jariel Que", "name": "Jariel Que",
"url": "https://github.com/fuwaa" "url": "https://github.com/fuwaa"
}, },
"host_permissions": ["https://*.github.com/"], "host_permissions": [
"https://*.github.com/"
],
"content_scripts": [ "content_scripts": [
{ {
"run_at": "document_start", "run_at": "document_start",
"matches": ["https://*.github.com/*"], "matches": [
"css": ["pint-css.css"], "https://*.github.com/*"
"js": ["initial.js"] ],
"css": [
"pint-css.css"
],
"js": [
"initial.js"
]
}, },
{ {
"run_at": "document_end", "run_at": "document_end",
"matches": ["https://*.github.com/*"], "matches": [
"js": ["initial.js"], "https://*.github.com/*"
"css": ["unhide.css"] ],
"js": [
"initial.js"
],
"css": [
"unhide.css"
]
}, },
{ {
"run_at": "document_idle", "run_at": "document_idle",
"matches": ["https://*.github.com/*"], "matches": [
"js": ["initial.js"] "https://*.github.com/*"
],
"js": [
"initial.js"
]
} }
], ],
"permissions": ["storage", "scripting"], "permissions": [
"storage",
"scripting"
],
"background": { "background": {
"service_worker": "background.js" "service_worker": "background.js"
}, },