pint/public/manifest.json

71 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2022-07-07 05:29:00 +00:00
{
"manifest_version": 3,
"name": "Pint for GitHub",
2022-08-09 09:00:46 +00:00
"version": "2.0.1",
"icons": {
"16": "pint-logo.png",
"48": "pint-logo.png",
"128": "pint-logo.png"
},
"action": {
"default_icon": {
"16": "pint-logo.png",
"24": "pint-logo.png",
"32": "pint-logo.png"
},
"default_title": "Pint for GitHub",
"default_popup": "index.html"
},
2022-08-03 07:05:15 +00:00
"description": "Pint for GitHub is a theming engine that allows you to customize and theme your developer experience on GitHub.",
"author": {
"name": "Jariel Que",
"url": "https://github.com/fuwaa"
},
2022-08-09 09:00:46 +00:00
"host_permissions": [
"https://*.github.com/"
],
"content_scripts": [
{
"run_at": "document_start",
2022-08-09 09:00:46 +00:00
"matches": [
"https://*.github.com/*"
],
"css": [
"pint-css.css"
],
"js": [
"initial.js"
]
},
{
"run_at": "document_end",
2022-08-09 09:00:46 +00:00
"matches": [
"https://*.github.com/*"
],
"js": [
"initial.js"
],
"css": [
"unhide.css"
]
2022-07-12 05:41:53 +00:00
},
{
"run_at": "document_idle",
2022-08-09 09:00:46 +00:00
"matches": [
"https://*.github.com/*"
],
"js": [
"initial.js"
]
}
],
2022-08-09 09:00:46 +00:00
"permissions": [
"storage",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"options_page": "index.html"
}