Gist Previewer
Preview gist html/js/css code.
Gist Previewer란 무엇입니까?
Gist Previewer은(는) David Orr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Preview gist html/js/css code."입니다.
확장 프로그램 스크린샷
Gist Previewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Renders Gist repos that contain HTML, JavaScript, or CSS files. Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.
확장 프로그램 기본 정보
이름 | Gist Previewer |
ID | akkophfgoandjomabfeppbnbgmejaofc |
공식 URL | https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc |
설명 | Preview gist html/js/css code. |
파일 크기 | 11.01 KB |
설치 횟수 | 92 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2017-04-03 |
출시 날짜 | 2017-04-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | David Orr |
결제 유형 | free |
도움말 페이지 URL | https://github.com/davidyorr/gist-previewer |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gist Previewer", "description": "Preview gist html\/js\/css code.", "version": "2.0.0", "content_scripts": [ { "matches": [ "https:\/\/gist.github.com\/*" ], "js": [ "js\/gistpreviewer.js" ], "css": [ "css\/gistpreviewer.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "manifest_version": 2 } |