Inspect and view changes in GitHub Diff Colorize 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
{
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "GitHub Diff Colorize",
"version": "1.1",
"manifest_version": 2,
"content_scripts": [
{
"js": [
"js/jquery-1.8.0.min.js",
"google-code-prettify/prettify.js",
"google-code-prettify/lang-css.js",
"js/background.js"
],
"css": [
"css/style.css",
"google-code-prettify/prettify.css"
],
"matches": [
"*://github.com/*"
]
}
],
"icons": {
"16": "icons/icon_16.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"description": "Improve diffs provided by github.com.",
"permissions": [
"http://*.github.com/",
"https://*.github.com/"
]
}