Codeskulptor Autosave

Autosave timer for Codeskulptor!

什么是Codeskulptor Autosave?

Codeskulptor Autosave是由https://www.bitfalls.com开发的Chrome扩展程序,该扩展的主要功能是“Autosave timer for Codeskulptor!”。

扩展截图

screenshot

下载Codeskulptor Autosave扩展crx文件

下载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"
}