Codeskulptor Autosave
Autosave timer for Codeskulptor!
什麼是Codeskulptor Autosave?
Codeskulptor Autosave是由https://www.bitfalls.com開發的Chrome擴展程式,該擴展的主要功能是“Autosave timer for Codeskulptor!”。
擴展截圖
下載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 |
ID | hpopfbgbgliggilmiohgejnkaigcnpib |
官方網址 | 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" } |