GitHub Stars Tagger
A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub.
GitHub Stars Tagger란 무엇입니까?
GitHub Stars Tagger은(는) Benoît Grélard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub."입니다.
확장 프로그램 스크린샷
GitHub Stars Tagger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add your own tags to the repositories you have starred directly on GitHub! No need to fiddle around anymore to find a repository you have starred months ago! You now have the ability to add your own tags and categorise your starred repositories the way you want to. Simply visit your /stars page and a native ui will let you add as many tags as you want on each starred repository. A neat sidebar will also display on the right hand side to show you the tags used across all starred repositories. Your tags will also follow you everywhere in every Chrome you log into. No need to jump in and out of another app or website anymore, just remain in your current workflow on github.com and enjoy!!
확장 프로그램 기본 정보
이름 | GitHub Stars Tagger |
ID | aaihhjepepgajmehjdmfkofegfddcabc |
공식 URL | https://chromewebstore.google.com/detail/github-stars-tagger/aaihhjepepgajmehjdmfkofegfddcabc |
설명 | A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub. |
파일 크기 | 135 KB |
설치 횟수 | 779 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2017-02-13 |
출시 날짜 | 2017-02-13 |
평점 | 3.50/5 총 10 개의 평점 |
개발자 | Benoît Grélard |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/artisologic/github-stars-tagger |
도움말 페이지 URL | https://github.com/artisologic/github-stars-tagger/issues |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Stars Tagger", "version": "1.0.3", "description": "A Google Chrome extension that lets you add tags to your starred repositories directly on GitHub.", "author": "Beno\u00eet Gr\u00e9lard", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png", "512": "icons\/512.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/stars", "https:\/\/github.com\/stars\/", "https:\/\/github.com\/stars?*" ], "js": [ "libs\/utils.js", "libs\/TagsStore.js", "libs\/EventEmitter.js", "libs\/Model.js", "libs\/View.js", "models\/Tags.js", "views\/TagLineView.js", "views\/TagSidebarView.js", "main.js" ], "css": [ "styles\/TagLine.css", "styles\/TagSidebar.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "manifest_version": 2, "minimum_chrome_version": "45" } |