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 |
官方網址 | 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" ] } ] } |