Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
What is Github Stars Manager?
Github Stars Manager is a Chrome extension developed by Gabriel Godoy, and its main feature is "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".
Extension Screenshots
Download Github Stars Manager Extension CRX File
Download Github Stars Manager 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 allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.
Extension Basic Information
Name | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
Official URL | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
Description | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
File Size | 149 KB |
Installation Count | 245 |
Current Version | 1.9 |
Last Updated | 2018-05-23 |
Publish Date | 2018-05-23 |
Rating | 3.83/5 Total 12 Ratings |
Developer | Gabriel Godoy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/gabrielgodoy/github-stars-manager |
Help Page URL | https://github.com/gabrielgodoy/github-stars-manager/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Stars Manager", "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.", "version": "1.9", "browser_action": { "default_icon": "src\/assets\/images\/icons\/icon.png" }, "icons": { "16": "src\/assets\/images\/icons\/icon16.png", "48": "src\/assets\/images\/icons\/icon48.png", "128": "src\/assets\/images\/icons\/icon128.png" }, "permissions": [ "contextMenus", "bookmarks", "tabs", "activeTab", "storage" ], "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "dist\/content_script.js" ], "css": [ "dist\/main.css" ] } ] } |