Archetype Code Editor

Archetype Code Editor

A fast, offline code editor for all Chromebooks, based on the Monaco editor from VS Code.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Archetype Code Editor",
  "short_name": "Archetype",
  "description": "A fast, offline code editor for all Chromebooks, based on the Monaco editor from VS Code.",
  "version": "0.7.1",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "storage",
    "notifications",
    "syncFileSystem",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    }
  ],
  "kiosk_enabled": false,
  "offline_enabled": true,
  "file_handlers": {
    "text": {
      "extensions": [
        "as",
        "as3",
        "asm",
        "bat",
        "c",
        "cc",
        "cfc",
        "cfm",
        "cgi",
        "coffee",
        "conf",
        "cpp",
        "cs",
        "csh",
        "css",
        "csv",
        "dart",
        "diff",
        "do",
        "ejs",
        "el",
        "erb",
        "glsl",
        "go",
        "h",
        "haml",
        "handlebars",
        "haxe",
        "hs",
        "htm",
        "html",
        "htmls",
        "ini",
        "jade",
        "java",
        "js",
        "json",
        "ksh",
        "less",
        "log",
        "love",
        "lua",
        "m",
        "make",
        "man",
        "manifest",
        "markdown",
        "mat",
        "md",
        "mdoc",
        "me",
        "micro",
        "obc",
        "patch",
        "php",
        "pkb",
        "pkg",
        "pks",
        "pl",
        "pls",
        "pm",
        "ps",
        "py",
        "r",
        "rake",
        "rb",
        "sass",
        "scala",
        "scss",
        "sh",
        "shtml",
        "sql",
        "styl",
        "svg",
        "tex",
        "text",
        "ts",
        "tsv",
        "txt",
        "vbs",
        "vcf",
        "xml",
        "yaml",
        "yml",
        "zsh"
      ],
      "types": [
        "application/javascript",
        "application/json",
        "application/x-shellscript",
        "application/xml",
        "text/*"
      ]
    }
  }
}