source-editor

Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…

source-editor란 무엇입니까?

source-editor은(는) kyo_ago에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

source-editor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Add editor to a source view.
Modify code to run on the original page.
Using the ACE Editor.


Try this one.
1. Modify code.
http://jsrun.it/kyo_ago/hyZJ/js?test.js

2. Open original page.
http://jsrun.it/kyo_ago/hyZJ                    

확장 프로그램 기본 정보

이름 source-editor source-editor
ID gfijhpfpapngnbgbaohekogcoohopcbn
공식 URL https://chrome.google.com/webstore/detail/source-editor/gfijhpfpapngnbgbaohekogcoohopcbn
설명 Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…
파일 크기 453 KB
설치 횟수 821
현재 버전 0.7
최근 업데이트 2013-07-21
출시 날짜 2013-07-21
평점 2.50/5 총 8 개의 평점
개발자 kyo_ago
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "browser_action": {
        "default_icon": {
            "19": "\/img\/logo.png",
            "38": "\/img\/logo.png"
        },
        "default_popup": "\/html\/popup.html",
        "default_title": "source-editor"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "\/lib\/jsdeferred.js",
            "\/src\/background.js"
        ]
    },
    "name": "source-editor",
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*.js",
        "https:\/\/*\/*.js",
        "http:\/\/*\/*.css",
        "https:\/\/*\/*.css"
    ],
    "icons": {
        "128": "\/img\/logo.png",
        "16": "\/img\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.js",
                "https:\/\/*\/*.js",
                "http:\/\/*\/*.css",
                "https:\/\/*\/*.css"
            ],
            "js": [
                "\/lib\/ace.js",
                "\/lib\/ace\/ext-searchbox.js",
                "\/lib\/ace\/keybinding-emacs.js",
                "\/lib\/ace\/keybinding-vim.js",
                "\/lib\/ace\/mode-javascript.js",
                "\/lib\/ace\/mode-css.js",
                "\/lib\/ace\/theme-chrome.js",
                "\/lib\/jsdeferred.js",
                "\/src\/content_scripts\/editor.js",
                "\/src\/content_scripts.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "0.7"
}