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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |