Bar Translate

Bar Translate

Jump to the address bar, type 't', press space or tab, and start typing things like 'fr Hello' or 'en Bonjour'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bar Translate",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAodc+iNR13jQoNL+dM2EF6z+HjtHjenq5s7K4j0rjDRDQO6lDKuOMPG71aURqpi6u81DuTpjQYqrLvcWhNIrx7d4tVxrTF7qi3KaCyjJVnibtmWEeqqwDtWY4e5eMc5O0M8I8w9GIQLenfWK52p8FOJKj0Mbgho1fcti2m8yfijEiZVCaCh+2KHKCtm0v2NJjpoPSmd2UiYN/hxQmiI6cQvsAWZgqZKUKuj2vZ0I6VMhBLklpOGy3OhZNNyEFb0j6wL17pL+OpN7lGR/SylesxSdN8CZUKEnlz9HPVH1nTD+E5XwRmVzCLIVDwAE+Zaeui7xLNrmLl3UkBO9J51bMjwIDAQAB",
  "description": "Jump to the address bar, type 't', press space or tab, and start typing things like 'fr Hello' or 'en Bonjour'",
  "version": "1.7.0",
  "minimum_chrome_version": "28",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Bar Translate",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "notifications",
    "storage"
  ],
  "icons": {
    "16": "images/icon.png",
    "24": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "64": "images/[email protected]",
    "80": "images/[email protected]",
    "96": "images/[email protected]",
    "128": "images/thumb-128.png",
    "256": "images/thumb-256.png"
  },
  "omnibox": {
    "keyword": "t"
  },
  "manifest_version": 2,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}