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", "name": "Github File History By Commits - View File", "short_name": "Github File History - View File", "description": "When viewing history for a single file, adds a new button with a link to view the file at the commit point in the history.", "version": "1.0.2", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icons\/icon-16x16.png", "32": "icons\/icon-32x32.png", "48": "icons\/icon-48x48.png", "60": "icons\/icon-60x60.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "webNavigation" ] }