Travo

Travo

Companion extension that will remind you to use your TRAvel VOuchers. Manage your travel vouchers and get reminded to use them…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Travo",
  "version": "1.0.3",
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "static/js/notification.js"
      ]
    }
  ],
  "permissions": [
    "https://*/*",
    "storage",
    "tabs"
  ]
}