gitea-conventional-comments.../manifest.json
Nicolò Maria Mezzopera 5790b5d22e
feat: prototype
2020-05-06 11:52:05 +02:00

26 lines
636 B
JSON

{
"name": "Semantic review comments button",
"version": "0.0.1",
"manifest_version": 2,
"description": "An extension to add quick semantic review comments",
"homepage_url": "http://extensionizr.com",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": ["src/bg/background.js"],
"persistent": true
},
"permissions": ["https://gitlab.com/*"],
"content_scripts": [
{
"matches": ["https://gitlab.com/*"],
"js": ["src/inject/inject.js"],
"css": ["src/inject/inject.css"]
}
]
}