Go Links

Go Links

Fast accessing your websites with a personal URL shortener

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Go Links",
  "version": "0.0.4",
  "description": "Fast accessing your websites with a personal URL shortener",
  "background": {
    "page": "linkify.html",
    "persistent": true
  },
  "icons": {
    "128": "icons/128x128.png"
  },
  "browser_action": {
    "default_title": "Go Links",
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/16x16.png",
      "48": "icons/48x48.png"
    }
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking"
  ]
}