Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
什么是Github Stars Manager?
Github Stars Manager是由Gabriel Godoy开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.”。
扩展截图
下载Github Stars Manager扩展crx文件
下载Github Stars Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
官方URL | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
简介 | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
文件大小 | 149 KB |
安装次数 | 245 |
当前版本 | 1.9 |
更新时间 | 2018-05-23 |
上架时间 | 2018-05-23 |
评分 | 3.83/5 共12次评分 |
开发者 | Gabriel Godoy |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/gabrielgodoy/github-stars-manager |
帮助页面URL | https://github.com/gabrielgodoy/github-stars-manager/issues |
支持的语言 | 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" ] } ] } |