Chrome Terminal

Chrome Terminal

A Chrome Extension to execute customized commands in the style of Terminal/Command Prompt/Command Line/Power Shell

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0",
  "author": "Pablo LION",
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "128": "Chrome-terminal-icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Show Chrome Terminal pop-up",
      "suggested_key": {
        "default": "Alt+T",
        "mac": "Alt+T"
      }
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "A Chrome Extension to execute customized commands in the style of Terminal/Command Prompt/Command Line/Power Shell",
  "icons": {
    "128": "Chrome-terminal-icon-128.png"
  },
  "manifest_version": 2,
  "name": "Chrome Terminal",
  "offline_enabled": true,
  "omnibox": {
    "keyword": "t"
  },
  "optional_permissions": [
    "*://*/*"
  ],
  "options_ui": {
    "chrome_style": false,
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "topSites",
    "chrome://favicon/"
  ]
}