Rapid Image Search

Rapid Image Search

Supports advanced image search with multiple filters from your address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rapid Image Search",
  "version": "3.0.5",
  "description": "Supports advanced image search with multiple filters from your address bar.",
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://search.myprivate-search.com/favicon.ico",
      "is_default": true,
      "name": "Rapid Image",
      "keyword": "image",
      "search_url": "https://search.myprivate-search.com/search/?category=web&extversion=3.0.4&s=c8pr&vert=private&q={searchTerms}",
      "suggest_url": "https://sug.myprivate-search.com/v1/sug/?s=c8pr&vert=imgSearch&q={searchTerms}"
    }
  },
  "homepage_url": "https://search.myprivate-search.com/wim/gotohub?yid=c8pr",
  "background": {
    "service_worker": "bg/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.safebrowsing-search.com/*"
      ],
      "js": [
        "content_script/onInstallCallback.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "*://*.myprivate-search.com/*"
  ],
  "action": {
    "default_title": "Rapid Image Search",
    "default_icon": "./img/icon16.png",
    "default_popup": "browser_action/popup.html"
  },
  "icons": {
    "16": "./img/icon16.png",
    "19": "./img/icon_19.png",
    "38": "./img/icon_38.png",
    "48": "./img/icon_48.png",
    "64": "./img/icon_64.png",
    "128": "./img/icon_128.png"
  },
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/icon16.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}