My Git Repo News
Chrome extension which helps you not to miss important changes in your news thread related to your repo
What is My Git Repo News?
My Git Repo News is a Chrome extension developed by greybax, and its main feature is "Chrome extension which helps you not to miss important changes in your news thread related to your repo".
Extension Screenshots
Download My Git Repo News Extension CRX File
Download My Git Repo News 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
Don't miss any changes in your github newsfeed related with your repos!
Extension Basic Information
Name | My Git Repo News |
ID | bpijgihicffjpcnjndpcdicohomlfbhp |
Official URL | https://chromewebstore.google.com/detail/my-git-repo-news/bpijgihicffjpcnjndpcdicohomlfbhp |
Description | Chrome extension which helps you not to miss important changes in your news thread related to your repo |
File Size | 168 KB |
Installation Count | 17 |
Current Version | 1.0.2 |
Last Updated | 2018-10-01 |
Publish Date | 2018-10-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | greybax |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/greybax/github-extension-my-repo-news |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "My Git Repo News", "description": "Chrome extension which helps you not to miss important changes in your news thread related to your repo", "short_name": "My Git Repo News", "version": "1.0.2", "homepage_url": "https:\/\/github.com\/greybax\/github-extension-my-repo-news", "browser_action": { "default_title": "My Git Repo News", "default_icon": "icons\/icon-16.png" }, "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "js\/index.js" ] } ] } |