ECHOed Links

ECHOed Links

Gets all your ECHO links and puts them into one, convenient location

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ECHOed Links",
  "description": "Gets all your ECHO links and puts them into one, convenient location",
  "version": "3.0.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.learn.canterbury.ac.nz/my/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "*://*.learn.canterbury.ac.nz/my/*"
  ],
  "browser_action": {
    "default_icon": "/img/logo_128.png",
    "default_popup": "popup.html",
    "default_title": "ECHOedLinks"
  },
  "icons": {
    "16": "/img/logo_16.png",
    "32": "/img/logo_32.png",
    "48": "/img/logo_48.png",
    "128": "/img/logo_128.png",
    "512": "/img/logo_512.png",
    "1024": "/img/logo_1024.png"
  }
}