pint/manifest.json
2022-01-10 11:56:13 +08:00

44 lines
No EOL
891 B
JSON

{
"manifest_version": 3,
"name": "Github Accentify",
"version": "1",
"action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
"default_title": "Gitccentify",
"default_popup": "popup.html"
},
"description": "Personalize your Github Experience by theming it to your own style.",
"author": {
"name": "Jariel Que",
"url": "https://github.com/nafunii"
},
"host_permissions": [
"https://*.github.com/"
],
"content_scripts": [{
"run_at": "document_end",
"matches": ["https://*.github.com/*"],
"js": ["onload.js"]
}],
"permissions": [
"storage",
"scripting",
"tabs"
],
"background": {
"service_worker": "background.js"
}
}