Codeskulptor Autosave

Autosave timer for Codeskulptor!

Что такое Codeskulptor Autosave?

Codeskulptor Autosave - это расширение Chrome, разработанное https://www.bitfalls.com, и его основная функция - "Autosave timer for Codeskulptor!".

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

screenshot

Скачать файл CRX расширения Codeskulptor Autosave

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

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

                        This extension was made to add autosave functionality to Codeskulptor. It will be removed when said functionality is natively supported. This extension is open source and there is a tutorial on its development available here: http://www.bitfalls.com/2012/11/building-codeskulptor-autosave-chrome.html                    

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

Название Codeskulptor Autosave Codeskulptor Autosave
ID hpopfbgbgliggilmiohgejnkaigcnpib
Официальный URL https://chromewebstore.google.com/detail/codeskulptor-autosave/hpopfbgbgliggilmiohgejnkaigcnpib
Описание Autosave timer for Codeskulptor!
Размер файла 239 KB
Количество установок 29
Текущая Версия 1
Последнее Обновление 2012-11-07
Дата публикации 2012-11-07
Разработчик https://www.bitfalls.com
Тип оплаты free
Официальный сайт расширения http://www.bitfalls.com/2012/11/building-codeskulptor-autosave-chrome.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeskulptor Autosave",
    "version": "1",
    "manifest_version": 2,
    "description": "Autosave timer for Codeskulptor!",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Autosave detected you're on Codeskulptor"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.codeskulptor.org\/*",
                "https:\/\/www.codeskulptor.org\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "fancy-settings\/source\/index.html"
}