Extension Developer Tools - Shortcuts

Extension Developer Tools - Shortcuts

Many shortcuts for chrome extensions development.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "author": "Jonathan Defraiteur",
  "version": "0.0.2",
  "default_locale": "en",
  "browser_action": {
    "default_title": "__MSG_extTitle__",
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-38.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "management",
    "tabs"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  }
}