Lucky - Skip search

Lucky - Skip search

Navigate to the first search result link directly when you type a query

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "3.0.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "omnibox": {
    "keyword": "go"
  },
  "browser_action": {
    "default_icon": "img/icon_128.png",
    "default_title": "__MSG_appName__",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index-b15a1a90.js"
      ],
      "matches": [
        "*://www.google.com/search*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "assets/background-ffc24c3e.js"
    ]
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "incognito": "spanning",
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "https://www.google.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1fd35724-1dfe-4ac5-a9e3-08fc2e254bbc}",
      "strict_min_version": "75.0"
    }
  },
  "web_accessible_resources": [
    "content/index.js"
  ]
}