Powerline Name Extender

Powerline Name Extender

An extension that lets you enter and use a longer name on powerline.io. You don't need this to do it, but it makes it a lot easier

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Powerline Name Extender",
  "version": "1.0",
  "description": "An extension that lets you enter and use a longer name on powerline.io. You don't need this to do it, but it makes it a lot easier",
  "manifest_version": 2,
  "icons": {
    "16": "PLN_16.png",
    "48": "PLN_48.png",
    "128": "PLN_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://powerline.io/*"
      ],
      "js": [
        "/content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}