Coder Notes

Coder Notes

This extension allows you to save snippets of code from around the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Coder Notes",
  "description": "This extension allows you to save snippets of code from around the web",
  "version": "0.0.0.3",
  "browser_action": {
    "default_icon": "img/codernotesCE.png",
    "default_popup": "login.html",
    "default_title": "Save to Coder Notes"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "https://ajax.googleapis.com/",
    "tabs",
    "http://limitless-island-46764.herokuapp.com/*"
  ],
  "background": {
    "scripts": [
      "jquery-1.12.2.min.js",
      "popup.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://limitless-island-46764.herokuapp.com/*"
      ],
      "js": [
        "jquery-1.12.2.min.js",
        "popup.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://limitless-island-46764.herokuapp.com/*"
    ]
  }
}