Switch url

Switch url

Extension which allows to switch from an url to another, or to open a new tab using the keyword go.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_tittle__",
  "version": "2014.3.30",
  "manifest_version": 2,
  "default_locale": "fr",
  "description": "__MSG_description__",
  "options_page": "options.htm",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png"
  },
  "omnibox": {
    "keyword": "go"
  },
  "page_action": {
    "default_icon": {
      "19": "icons/19x19.png",
      "38": "icons/38x38.png"
    },
    "default_title": "__MSG_tittle__",
    "default_popup": "popup.htm"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "unlimitedStorage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}