Pinterest Search

Pinterest Search

Discover Pinterest search without login and fast image search from highlighted text. Transform your navigation on a vast repository!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "version": "1.0.3",
  "icons": {
    "16": "img/icons/16x16.png",
    "32": "img/icons/32x32.png",
    "48": "img/icons/48x48.png",
    "64": "img/icons/64x64.png",
    "128": "img/icons/128x128.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/event-page.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/icons/64x64.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "html/options.html"
  }
}