Codebase Tab Completion

Codebase Tab Completion

Adds tab completion to the 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": "Codebase Tab Completion",
  "description": "Adds tab completion to the address bar.",
  "version": "1.1",
  "author": "Adam Alton <[email protected]>",
  "omnibox": {
    "keyword": "cb"
  },
  "background": {
    "scripts": [
      "abc.js"
    ]
  },
  "permissions": [
    "storage",
    "https://api3.codebasehq.com/*"
  ],
  "browser_action": {
    "default_icon": "tab_completion_16.png",
    "default_popup": "settings.html"
  }
}