Inspect and view changes in Original GitHub Navigation Bar Color 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": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Original GitHub Navigation Bar Color",
"version": "1.1.4",
"description": "Reverts the GitHub navigation bar back to it's original color.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"author": "Jack Wilsdon <jack.wilsdon@gmail.com>",
"content_scripts": [
{
"matches": [
"*://github.com/*",
"*://*.github.com/*"
],
"css": [
"styles.css"
]
}
],
"homepage_url": "https://github.com/jackwilsdon/original-github-navigation-bar-color",
"permissions": [
"*://github.com/*",
"*://*.github.com/*"
],
"short_name": "Original GitHub Navigation"
}