Android SDK Search

Android SDK Search

Adds an 'ad' Awesome Bar command and view source links for the Android SDK.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Android SDK Search",
  "description": "Adds an 'ad' omnibox command and view source links for the Android SDK.",
  "version": "0.3.16.2resigned1",
  "permissions": [
    "tabs",
    "*://developer.android.com/*",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "omnibox": {
    "keyword": "ad"
  },
  "content_scripts": [
    {
      "matches": [
        "*://developer.android.com/reference/*",
        "*://developer.android.com/guide/*"
      ],
      "js": [
        "ref-inject-code-search.js"
      ],
      "css": [
        "ref-inject-code-search.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{c735b035-7d1c-49d7-8988-18ff1620c82a}"
    }
  }
}