JSFiddle Auto Run & Save
This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js
JSFiddle Auto Run & Save란 무엇입니까?
JSFiddle Auto Run & Save은(는) kongyuyu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js"입니다.
확장 프로그램 스크린샷
JSFiddle Auto Run & Save 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features:
1. JSFiddle runs automatically when key strikes stopped for 1.5 seconds.
2. JSFiddle saves automatically with every 25 key strikes.
3. Adds a button on JSFiddle page to hide all panels other than js panel.
Feature 1 & 2 could be turned on/off by toggling the extension icon.
Feature 3 could be toggled with the "Hide/Show Extra Panels" button on JSFiddle Page.
Work in progress:
1. Add a configuration page for customize auto run delay and auto save key counts.
Special thanks to @mechanicious on github. I learnt how to enable auto run on JSFiddle from him, and then built this extension. 확장 프로그램 기본 정보
| 이름 | |
| ID | holmgemnafgpfmphccghdfljgaocpbfj |
| 공식 URL | https://chrome.google.com/webstore/detail/jsfiddle-auto-run-save/holmgemnafgpfmphccghdfljgaocpbfj |
| 설명 | This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js |
| 파일 크기 | 24.39 KB |
| 설치 횟수 | 58 |
| 현재 버전 | 0.0.1 |
| 최근 업데이트 | 2018-02-13 |
| 출시 날짜 | 2018-02-13 |
| 평점 | 5.00/5 총 1 개의 평점 |
| 개발자 | kongyuyu |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/kongyuyu/jsfiddle-chrome-extension |
| 도움말 페이지 URL | https://github.com/kongyuyu/jsfiddle-chrome-extension/issues |
| 지원되는 언어 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JSFiddle Auto Run & Save",
"description": "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js",
"version": "0.0.1",
"icons": {
"16": "images\/icon-enabled-16.png",
"48": "images\/icon-enabled-48.png",
"128": "images\/icon-enabled-128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"page_action": [],
"content_scripts": [
{
"matches": [
"https:\/\/jsfiddle.net\/*"
],
"js": [
"scripts\/jsfiddle-mixin.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"storage",
"declarativeContent"
]
} | |