pint/manifest.json

44 lines
863 B
JSON
Raw Normal View History

2022-01-07 20:45:56 +00:00
{
"manifest_version": 3,
"name": "Github Accentify",
2022-01-07 20:57:20 +00:00
"version": "1",
2022-01-07 20:45:56 +00:00
"action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
"default_title": "Github Accentify",
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
},
"description": "Personalize your Github Experience",
"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",
"scripting",
"tabs"
2022-01-08 04:49:42 +00:00
],
"background": {
"service_worker": "background.js"
}
2022-01-07 20:45:56 +00:00
}