pint/manifest.json

43 lines
872 B
JSON
Raw Normal View History

2022-01-07 20:45:56 +00:00
{
"manifest_version": 3,
2022-01-10 04:41:35 +00:00
"name": "Gitccentify",
2022-01-12 05:41:06 +00:00
"version": "1.1",
2022-01-07 20:45:56 +00:00
"action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
2022-01-10 03:56:13 +00:00
"default_title": "Gitccentify",
2022-01-08 04:49:42 +00:00
2022-01-07 20:59:24 +00:00
"default_popup": "popup.html"
2022-01-08 04:49:42 +00:00
2022-01-07 20:45:56 +00:00
},
2022-01-10 03:56:13 +00:00
"description": "Personalize your Github Experience by theming it to your own style.",
2022-01-07 20:45:56 +00:00
"author": {
"name": "Jariel Que",
"url": "https://github.com/nafunii"
},
"host_permissions": [
2022-01-10 03:26:26 +00:00
"https://*.github.com/"
2022-01-08 04:49:42 +00:00
],
"content_scripts": [{
2022-01-10 03:26:26 +00:00
"run_at": "document_end",
2022-01-08 04:49:42 +00:00
"matches": ["https://*.github.com/*"],
2022-01-10 03:26:26 +00:00
"js": ["onload.js"]
2022-01-08 04:49:42 +00:00
}],
"permissions": [
2022-01-10 03:26:26 +00:00
"storage",
2022-01-12 05:39:31 +00:00
"scripting"
2022-01-08 04:49:42 +00:00
],
"background": {
"service_worker": "background.js"
}
2022-01-07 20:45:56 +00:00
}