Timely

Timely

Optimize your Google Maps route with Timely!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Timely",
  "version": "1.0.5",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": [
    {
      "name": "Cyril Kamal",
      "email": "[email protected]"
    },
    {
      "name": "Amanuel Negussie",
      "email": "[email protected]"
    },
    {
      "name": "Jacky Lam",
      "email": "[email protected]"
    }
  ],
  "description": "Optimize your Google Maps route with Timely!",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://www.google.com/maps/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Timely"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage",
    "webNavigation"
  ],
  "host_permissions": [
    "https://giddy-tuna-bedclothes.cyclic.app/*"
  ]
}