Khoj

Khoj

Search every website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Khoj",
  "version": "1.1",
  "browser_action": {
    "name": "Click to get URL"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*"
  ],
  "minimum_chrome_version": "23",
  "description": "Search every website",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "short_name": "KHOJ",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "48": "/images/logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*.*",
    "styles.css",
    "script.js"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.0.min.js",
        "search.js"
      ],
      "all_frames": false,
      "css": [],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ]
}