Paint GitHub
This adds canvas for drawing a picture and inserting them in GitHub comment boxes.
Paint GitHub란 무엇입니까?
Paint GitHub은(는) Mu-An Chiou에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This adds canvas for drawing a picture and inserting them in GitHub comment boxes."입니다.
확장 프로그램 스크린샷
Paint GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Injects a "Draw" panel to GitHub's comment area so you can draw a helpful picture to be included in the comment!
확장 프로그램 기본 정보
이름 | Paint GitHub |
ID | dmcjbappfnlamankemdmmdjiecnclapl |
공식 URL | https://chromewebstore.google.com/detail/paint-github/dmcjbappfnlamankemdmmdjiecnclapl |
설명 | This adds canvas for drawing a picture and inserting them in GitHub comment boxes. |
파일 크기 | 34.1 KB |
설치 횟수 | 203 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2019-11-27 |
출시 날짜 | 2019-11-26 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Mu-An Chiou |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paint GitHub", "short_name": "paint-github", "version": "0.3.0", "manifest_version": 2, "description": "This adds canvas for drawing a picture and inserting them in GitHub comment boxes.", "homepage_url": "http:\/\/github.com\/muan\/paint-github", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "inject.js" ] } ], "web_accessible_resources": [ "index.js", "node_modules\/changedpi\/src\/index.js", "paint-canvas-element.js" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |