Chord Parser

Chord Parser

This extension will analyze a string of text for chords and return a set of chord charts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chord Parser",
  "description": "This extension will analyze a string of text for chords and return a set of chord charts",
  "version": "0.7",
  "browser_action": {
    "default_icon": "favicon48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "favicon16.png",
    "48": "favicon48.png",
    "128": "favicon128.png"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "commands": {
    "open-window": {
      "suggested_key": {
        "default": "Ctrl+Shift+Comma",
        "mac": "Command+Shift+Comma"
      },
      "description": "Open Window"
    }
  },
  "background": {
    "scripts": [
      "./assets/javascript/background.js"
    ]
  }
}