Search Vatican Documents

Research documents on the Vatican website using the searching power of Google, Bing or DuckDuckGo
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Search Vatican Documents",
  "description": "Research documents in the Vatican website using the searching power of Google, Bing or DuckDuckGo",
  "version": "1.1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "asyncideas.info@gmail.com",
      "strict_min_version": "42.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "./icons/16icon.png",
    "32": "./icons/32icon.png",
    "48": "./icons/48icon.png",
    "128": "./icons/128icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./icons/16icon.png",
      "32": "./icons/32icon.png",
      "48": "./icons/48icon.png",
      "128": "./icons/128icon.png"
    }
  }
}