gitea-conventional-comments.../manifest.json

34 lines
778 B
JSON
Raw Normal View History

2020-05-06 09:52:05 +00:00
{
"name": "gitea conventional comments buttons",
"version": "0.0.2",
2022-04-03 12:50:10 +00:00
"manifest_version": 3,
2023-07-31 18:32:58 +00:00
"description": "An extension to quickly add conventional comments to gitea PR comments",
2020-05-22 10:11:40 +00:00
"homepage_url": "https://conventionalcomments.org/",
2020-05-06 09:52:05 +00:00
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"action": {},
2022-04-03 12:50:10 +00:00
"permissions": [
"scripting"
],
"host_permissions": [
"*://*/*"
2022-04-03 12:50:10 +00:00
],
"browser_specific_settings": {
"gecko": {
"id": "{caedf018-aaa8-4999-b196-cd29026bb558}"
}
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["src/inject/inject.js"],
"css": ["src/inject/inject.css"],
"runAt": "document_idle"
}
]
2020-05-06 09:52:05 +00:00
}