Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitHub One Click Comment",
"short_name": "GHOCC",
"description": "Injects comment buttons with custom, predefined text into the GitHub comment bar.",
"version": "1.0",
"browser_action": {
"default_popup": "popup\/index.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}