Copy to Gist
Copies selected text to gist and appends the gist url to your clipboard.
Copy to Gist란 무엇입니까?
Copy to Gist은(는) https://mbejda.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies selected text to gist and appends the gist url to your clipboard."입니다.
확장 프로그램 스크린샷
Copy to Gist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Copy to Gist copies selected text to a gist and appends the gist url to your clipboard. The default privacy of the created gist is public, however, It does support the option to create and copy to private gists. Instructions : - Authorize your Github by clicking on the clipboard icon in the browser extension bar. - Select code or text on a page and right click to display context menu. - Click Copy to Gist - A gist will be created in the authorized Github account and its url will be appended to your clipboard
확장 프로그램 기본 정보
이름 | Copy to Gist |
ID | lofgjnadojidbnajbnflkfnfmgiipfmc |
공식 URL | https://chromewebstore.google.com/detail/copy-to-gist/lofgjnadojidbnajbnflkfnfmgiipfmc |
설명 | Copies selected text to gist and appends the gist url to your clipboard. |
파일 크기 | 415 KB |
설치 횟수 | 230 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2017-12-19 |
출시 날짜 | 2017-12-18 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | https://mbejda.com |
결제 유형 | free |
도움말 페이지 URL | https://medium.com/@milosbejda/chrome-extension-copy-to-gist-21a6933e9e25 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.3", "manifest_version": 2, "author": "Milos Bejda", "description": "__MSG_appDescription__", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjr9YckspNl5XVNSOTT1ae8O6oOzZgDeqqKDpxhUapLrrHWaMJSH1lhF8sxe9gFm4zrf5HMboziShwI\/v3oHdN8JOGL55j5V5tI5OohF3Y4ebqqGIRwgqdZVuA0r2Lqy6thMk+X8\/Vc3JQHfhiKL+9\/EAKEPPkZiOYycSUtsgwTQsXtMB7\/OFTY7Ys0w569F\/mASmNw+SQL90H9mzj4SGyIp+XeHJBsXdQpGxAHlKm8G7j4u8Z\/fAMzERpdlnaUyDmnTXWWdyCpR04ucbrqJRTeuqi23ANzStY+Zwv0kQBzTu4\/JpqqSxM+ycxuYjdsZudwXfBDQqnhNa74fnmb8e2wIDAQAB", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/jquery.js", "scripts\/background.js" ] }, "permissions": [ "storage", "tabs", "activeTab", "contextMenus", "identity", "https:\/\/github.com\/*" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "copy2gist", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |