Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Github Copy File Extension란 무엇입니까?
Github Copy File Extension은(는) itayadler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension that adds a Copy file to clipboard button to Github code browser"입니다.
확장 프로그램 스크린샷
Github Copy File Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Sometimes you just want to copy code from Github's code viewer and don't want to click on the Raw button, and hit Ctrl+A and Ctrl+C to get the code from the new tab
확장 프로그램 기본 정보
이름 | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
공식 URL | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
설명 | A chrome extension that adds a Copy file to clipboard button to Github code browser |
파일 크기 | 36.83 KB |
설치 횟수 | 38 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2020-06-02 |
출시 날짜 | 2020-06-02 |
개발자 | itayadler |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/itayadler/github-file-copy |
도움말 페이지 URL | https://github.com/itayadler/github-file-copy/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension that adds a Copy file to clipboard button to Github code browser", "version": "0.0.2", "name": "Github Copy File Extension", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "https:\/\/github.com\/*" ], "run_at": "document_idle", "js": [ "contentscript.js" ] } ], "permissions": [ "webNavigation" ] } |