Codeskulptor Autosave

Autosave timer for Codeskulptor!

What is Codeskulptor Autosave?

Codeskulptor Autosave is a Chrome extension developed by https://www.bitfalls.com, and its main feature is "Autosave timer for Codeskulptor!".

Extension Screenshots

screenshot

Download Codeskulptor Autosave Extension CRX File

Download Codeskulptor Autosave extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Codeskulptor Autosave Codeskulptor Autosave
ID hpopfbgbgliggilmiohgejnkaigcnpib
Official URL https://chromewebstore.google.com/detail/codeskulptor-autosave/hpopfbgbgliggilmiohgejnkaigcnpib
Description Autosave timer for Codeskulptor!
File Size 239 KB
Installation Count 29
Current Version 1
Last Updated 2012-11-07
Publish Date 2012-11-07
Developer https://www.bitfalls.com
Payment Type free
Extension Website http://www.bitfalls.com/2012/11/building-codeskulptor-autosave-chrome.html
Supported Languages 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"
}