Codeskulptor Autosave

Autosave timer for Codeskulptor!

Codeskulptor Autosave là gì?

Codeskulptor Autosave là một tiện ích mở rộng Chrome được phát triển bởi https://www.bitfalls.com, và tính năng chính của nó là "Autosave timer for Codeskulptor!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Codeskulptor Autosave

Tải xuống các tệp mở rộng Codeskulptor Autosave dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Codeskulptor Autosave Codeskulptor Autosave
ID hpopfbgbgliggilmiohgejnkaigcnpib
URL Chính Thức https://chromewebstore.google.com/detail/codeskulptor-autosave/hpopfbgbgliggilmiohgejnkaigcnpib
Mô tả Autosave timer for Codeskulptor!
Kích Thước Tệp 239 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2012-11-07
Ngày Phát Hành 2012-11-07
Nhà Phát Triển https://www.bitfalls.com
Loại Thanh Toán free
Trang Web Mở Rộng http://www.bitfalls.com/2012/11/building-codeskulptor-autosave-chrome.html
Ngôn Ngữ Được Hỗ Trợ 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"
}