Chrome-REPL

Chrome REPL

Что такое Chrome-REPL?

Chrome-REPL - это расширение Chrome, разработанное http://blog.diniscruz.com, и его основная функция - "Chrome REPL".

Снимки экрана расширения

screenshot
screenshot
screenshot

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

Скачайте файлы расширений Chrome-REPL в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Simple REPL that exposes the chrome extension objects.

Great for quickly scripting website's contents or to learn the Chrome extension APIs

For more install and usage details see this blog post: http://blog.diniscruz.com/2014/11/chrome-repl-first-o2-platform-chrome.html                    

Основная информация о расширении

Название Chrome-REPL Chrome-REPL
ID ojmdmeehmpkpkkhbifimekflgmnmeihg
Официальный URL https://chrome.google.com/webstore/detail/chrome-repl/ojmdmeehmpkpkkhbifimekflgmnmeihg
Описание Chrome REPL
Размер файла 2.32 MB
Количество установок 85
Текущая Версия 0.0.9
Последнее Обновление 2014-11-21
Дата публикации 2014-11-21
Рейтинг 3.00/5 Всего 2 оценок
Разработчик http://blog.diniscruz.com
Тип оплаты free
Официальный сайт расширения https://github.com/o2platform/chrome-repl
URL страницы помощи https://github.com/o2platform/chrome-repl/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome-REPL",
    "version": "0.0.9",
    "manifest_version": 2,
    "description": "Chrome REPL",
    "icons": {
        "16": "images\/exec.png",
        "128": "images\/exec.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/helpers\/storage.helper.js",
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/exec.png",
            "38": "images\/exec.png"
        },
        "default_title": "Chrome REPL",
        "default_popup": "options.html"
    },
    "devtools_page": "devtools.html",
    "options_page": "options.html",
    "omnibox": {
        "keyword": "Chrome REPL"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}