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

23 lines
588 B
JSON
Raw Normal View History

2020-05-06 09:52:05 +00:00
{
2020-05-22 08:53:47 +00:00
"name": "Conventional comments button",
2020-05-06 09:52:05 +00:00
"version": "0.0.1",
"manifest_version": 2,
2020-05-22 08:53:47 +00:00
"description": "An extension to quickly add conventional 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",
"permissions": ["https://gitlab.com/*"],
"content_scripts": [
{
"matches": ["https://gitlab.com/*"],
"js": ["src/inject/inject.js"],
"css": ["src/inject/inject.css"],
"run_at": "document_idle"
2020-05-06 09:52:05 +00:00
}
]
2020-05-06 09:52:05 +00:00
}