githubpoints/manifest.json

31 lines
609 B
JSON
Raw Normal View History

{
"manifest_version": 2,
"name": "GithubPoints",
2019-05-07 14:27:25 +02:00
"version": "1.1.2",
"description": "Adds points and summary to the Github Project page",
2019-04-15 16:32:43 +02:00
"author": "José Carlos Cuevas",
"applications": {
"gecko": {
"id": "githubpoints@doofinder.com"
}
},
"icons": {
"48": "icons/githubpoints-48.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; font-src 'self';",
"content_scripts": [
{
"matches": ["*://*.github.com/*/projects/*"],
"js": ["githubpoints-projects.js"],
"css": ["githubpoints.css"]
}
]
}