Android SDK Search

Android SDK Search

Adds an 'ad' Omnibox command and 'view source' links for the Android SDK

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Android SDK Search",
  "description": "Adds an 'ad' Omnibox command and 'view source' links for the Android SDK",
  "version": "1.4.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://developer.android.com/reference/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "omnibox": {
    "keyword": "ad"
  },
  "permissions": [
    "storage",
    "https://api.sdksearch.app/"
  ]
}