Short Cut for URL mapper

Short Cut for URL mapper

This extension will translate the URL in address bar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Short Cut for URL mapper",
  "description": "This extension will translate the URL in address bar",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Alt+Shift+A",
        "mac": "Command+Shift+Y"
      },
      "description": "Display Id and URL of the current open/active tab.",
      "global": true
    }
  },
  "omnibox": {
    "keyword": "sc"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "http://*.google.com/",
    "https://*.google.com/"
  ]
}