githubpoints/manifest.json

25 lines
467 B
JSON
Raw Normal View History

{
"manifest_version": 2,
"name": "GithubPoints",
"version": "1.0",
"description": "Adds points and summary to the Github Project page",
"icons": {
"48": "icons/githubpoints-48.png"
},
"permissions":["<all_urls>","tabs"],
"content_security_policy": "script-src 'self'; object-src 'self'; font-src 'self';",
"content_scripts": [
{
"matches": ["*://*.github.com/*/projects/*"],
"js": ["githubpoints-projects.js"]
}
]
}