Inspect and view changes in Potential changes for GitHub 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": "Potential changes for GitHub",
"version": "0.7.0",
"homepage_url": "https://github.com/dzhavat/potential-changes-for-github",
"description": "Analyzes all pull requests within a GitHub repository for any potential changes related to a file.",
"permissions": [
"https://github.com/*",
"https://api.github.com/*"
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
]
}