Codeskulptor Autosave
Autosave timer for Codeskulptor!
Vad är Codeskulptor Autosave?
Codeskulptor Autosave är en Chrome-tillägg utvecklad av https://www.bitfalls.com, och dess huvudfunktion är "Autosave timer for Codeskulptor!".
Tilläggsskärmbilder
Ladda ner Codeskulptor Autosave-förlängningens CRX-fil
Ladda ner Codeskulptor Autosave-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Codeskulptor Autosave |
ID | hpopfbgbgliggilmiohgejnkaigcnpib |
Officiell webbadress | https://chromewebstore.google.com/detail/codeskulptor-autosave/hpopfbgbgliggilmiohgejnkaigcnpib |
Beskrivning | Autosave timer for Codeskulptor! |
Filstorlek | 239 KB |
Antal Installationer | 29 |
Aktuell Version | 1 |
Senast Uppdaterad | 2012-11-07 |
Publiceringsdatum | 2012-11-07 |
Utvecklare | https://www.bitfalls.com |
Betalningssätt | free |
Tilläggswebbplats | http://www.bitfalls.com/2012/11/building-codeskulptor-autosave-chrome.html |
Stödda Språk | 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" } |