Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Wat is Github Stars Manager?
Github Stars Manager is een Chrome-extensie ontwikkeld door Gabriel Godoy, en de belangrijkste functie is "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Stars Manager
Download Github Stars Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
Officiële URL | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
Beschrijving | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
Bestandsgrootte | 149 KB |
Aantal Installaties | 245 |
Huidige Versie | 1.9 |
Laatst Bijgewerkt | 2018-05-23 |
Publicatiedatum | 2018-05-23 |
Beoordeling | 3.83/5 Totaal 12 Beoordelingen |
Ontwikkelaar | Gabriel Godoy |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/gabrielgodoy/github-stars-manager |
Help Pagina-URL | https://github.com/gabrielgodoy/github-stars-manager/issues |
Ondersteunde Talen | 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" ] } ] } |