Github Voice Notes
Record and add voice note comments to pull requests on Github
Github Voice Notes란 무엇입니까?
Github Voice Notes은(는) ryanmarvin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record and add voice note comments to pull requests on Github"입니다.
확장 프로그램 스크린샷
Github Voice Notes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are you tired of Zoom calls? Want more pointed discussions and faster Github pull request reviews? Github Voice Notes will let you record audio snippets and add them on Github pull request comments with only the click of a single button!
확장 프로그램 기본 정보
이름 | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
공식 URL | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
설명 | Record and add voice note comments to pull requests on Github |
파일 크기 | 477 KB |
설치 횟수 | 26 |
현재 버전 | 0.3 |
최근 업데이트 | 2021-07-13 |
출시 날짜 | 2021-07-03 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | ryanmarvin |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Voice Notes", "description": "Record and add voice note comments to pull requests on Github", "version": "0.3", "manifest_version": 2, "icons": { "16": "static\/gvn-icon-16.png", "48": "static\/gvn-icon-48.png", "128": "static\/gvn-icon-square-128.png" }, "content_security_policy": "script-src 'self'; object-src 'self';", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*", "*:\/\/github.com\/*\/*\/pull\/*\/files", "*:\/\/github.com\/*\/*\/pull\/*\/commits\/*", "*:\/\/github.com\/*\/*\/commit\/*" ], "js": [ "main.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/github.com\/*" ] }, "web_accessible_resources": [ "static\/*", "page-script.js" ] } |