Tenere

Tenere

Automatically apply coupon codes when you shop and plant trees on your behalf.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Tenere",
  "default_locale": "en",
  "version": "1.0.1",
  "description": "Automatically apply coupon codes when you shop and plant trees on your behalf.",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 2,
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "popup.html"
  },
  "omnibox": {
    "keyword": "tenere"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "public/js/content-scripts/start.main.js"
      ],
      "match_about_blank": false,
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "public/js/content-scripts/end.main.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": false,
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "*://*/*",
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "img/*",
    "public/styles/*",
    "public/styles/fonts/*",
    "*.png",
    "*.ttf",
    "*.otf"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com/analytics.js https://ssl.google-analytics.com/ga.js https://*.gstatic.com/* https://*.googleapis.com/* https://*.firebaseio.com/*; object-src 'self'"
}