Inspect and view changes in GitHub Canned Responses source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "GitHub Canned Responses",
"description": "Choose from a set of canned responses when commenting on your GitHub PRs or issues",
"version": "1.0.9resigned1",
"icons": {
"128": "logo.png"
},
"permissions": [
"activeTab"
],
"options_page": "options.html",
"content_scripts": [
{
"js": [
"editor.js",
"contentScript.js"
],
"css": [
"options.css"
],
"matches": [
"*://github.com/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"applications": {
"gecko": {
"id": "github-canned-responses@example"
}
}
}