pint/old/manifest.json
2022-07-07 13:27:33 +08:00

43 lines
No EOL
872 B
JSON

{
"manifest_version": 3,
"name": "Gitccentify",
"version": "1.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"
],
"background": {
"service_worker": "background.js"
}
}