Travel Extension

Travel Extension

Travel Image Extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Travel Extension",
  "description": "Travel Image Extensions",
  "version": "2.0.1",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "48": "assets/icons/icon_48.png",
      "128": "assets/icons/icon_128.png"
    }
  },
  "icons": {
    "48": "assets/icons/icon_48.png",
    "128": "assets/icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*.google.com/*"
      ],
      "js": [
        "content_scripts/main.js"
      ],
      "css": [
        "styles/tailwind.min.css"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "new_tab/index.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://d1czeafuzboizz.cloudfront.net/travel/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/app/*",
        "assets/images/background/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}