Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
¿Qué es Github Stars Manager?
Github Stars Manager es una extensión de Chrome desarrollada por Gabriel Godoy, y su función principal es "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Github Stars Manager
Descarga archivos de extensión Github Stars Manager en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
URL Oficial | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
Descripción | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
Tamaño del Archivo | 149 KB |
Cantidad de Instalaciones | 245 |
Versión Actual | 1.9 |
Última Actualización | 2018-05-23 |
Fecha de Publicación | 2018-05-23 |
Calificación | 3.83/5 Total de 12 Calificaciones |
Desarrollador | Gabriel Godoy |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/gabrielgodoy/github-stars-manager |
URL de la Página de Ayuda | https://github.com/gabrielgodoy/github-stars-manager/issues |
Idiomas Soportados | 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" ] } ] } |