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