Snapkey - One step to search anything

Snapkey - One step to search anything

Snapkey significantly boosts your efficiency with hotkeys, keywords, and more. Anything is searchable within our powerful extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.5.0",
  "name": "__MSG_PKG_NAME__",
  "manifest_version": 2,
  "description": "__MSG_PKG_DESC__",
  "default_locale": "en",
  "browser_action": {
    "default_title": "Snapkey"
  },
  "icons": {
    "16": "icons/on16.png",
    "48": "icons/on48.png",
    "128": "icons/on128.png"
  },
  "background": {
    "page": "background.html"
  },
  "commands": {
    "Active Extension": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "description": "Active Snapkey Extension"
    },
    "Active Setting": {
      "suggested_key": {
        "default": "Ctrl+U",
        "mac": "Command+U"
      },
      "description": "Active Snapkey Setting"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "static/*",
    "assets/*",
    "content.html"
  ],
  "permissions": [
    "tabs",
    "storage",
    "history",
    "downloads",
    "bookmarks",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "content_security_policy": "default-src 'self' https://snapkey.app https://www.google-analytics.com https://translate.googleapis.com; script-src 'self'  https://www.google-analytics.com http://localhost:3000; connect-src *; style-src * 'unsafe-inline' 'self' blob:; font-src *; img-src * data:;"
}