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 - это расширение Chrome, разработанное kyo_ago, и его основная функция - "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

Скачать файл CRX расширения source-editor

Скачайте файлы расширений source-editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения 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.
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"
}