ReSearch

ReSearch

Enhance your search engine with alternatives

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ReSearch",
  "version": "1.0.6",
  "description": "Enhance your search engine with alternatives",
  "author": "Ilija Tesic <[email protected]>",
  "homepage_url": "https://github.com/ITesic/research",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon32.png",
    "19": "icons/icon38.png",
    "24": "icons/icon48.png",
    "32": "icons/icon64.png",
    "48": "icons/icon96.png",
    "128": "icons/icon256.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*",
        "http://google.com/*",
        "https://www.google.com/*",
        "https://google.com/*"
      ],
      "js": [
        "content/inject.js"
      ],
      "css": [
        "content/inject.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  }
}