Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Hvad er Github Stars Manager?
Github Stars Manager er en Chrome-udvidelse udviklet af Gabriel Godoy, og dens hovedfunktion er "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".
Udvidelsesskærmbilleder
Download Github Stars Manager-udvidelses-CRX-fil
Download Github Stars Manager-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
Officiel URL | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
Beskrivelse | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
Filstørrelse | 149 KB |
Antal Installationer | 245 |
Nuværende Version | 1.9 |
Senest Opdateret | 2018-05-23 |
Udgivelsesdato | 2018-05-23 |
Bedømmelse | 3.83/5 Samlet 12 Bedømmelser |
Udvikler | Gabriel Godoy |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/gabrielgodoy/github-stars-manager |
Hjælpeside-URL | https://github.com/gabrielgodoy/github-stars-manager/issues |
Understøttede Sprog | 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" ] } ] } |