Alias Links

Alias Links

Aliasing the links that we hardly remember. Set a unique word for a link.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Alias Links",
  "manifest_version": 2,
  "version": "1.4.3",
  "description": "Aliasing the links that we hardly remember. Set a unique word for a link.",
  "omnibox": {
    "keyword": "a"
  },
  "icons": {
    "16": "barIcon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}