What's New on GitHub
See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.
What is What's New on GitHub?
What's New on GitHub is a Chrome extension developed by Mickaël Allonneau, and its main feature is "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.".
Extension Screenshots
Download What's New on GitHub Extension CRX File
Download What's New on GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension helps you see easily what happened on GitHub since your last visit. See the screenshot to see it in action! ⭐ Don't forget to leave a rating if you find this extension useful! (Also available on Firefox : https://addons.mozilla.org/en-US/firefox/addon/whats-new-github/)
Extension Basic Information
Name | What's New on GitHub |
ID | ldleapnlgbkpkabhbkkeangmnfpikahe |
Official URL | https://chromewebstore.google.com/detail/whats-new-on-github/ldleapnlgbkpkabhbkkeangmnfpikahe |
Description | See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds. |
File Size | 9.8 KB |
Installation Count | 175 |
Current Version | 3.0.1 |
Last Updated | 2023-02-28 |
Publish Date | 2020-05-18 |
Developer | Mickaël Allonneau |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/flawyte/whats-new-github |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "What's New on GitHub", "version": "3.0.1", "description": "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.", "icons": { "48": "icon\/48.png", "128": "icon\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/", "https:\/\/github.com\/dashboard", "https:\/\/github.com\/orgs\/*\/dashboard" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |