ecosurf

ecosurf

Eco Friendly carbon offset finder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.1",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/cloud.png",
    "128": "images/cloud.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "options_page": "pages/options.html",
  "options_ui": {
    "page": "pages/options.html",
    "chrome_style": true
  },
  "minimum_chrome_version": "10.0",
  "devtools_page": "pages/devtools.html",
  "chrome_url_overrides": {
    "history": "pages/history.html"
  },
  "omnibox": {
    "keyword": "ecosurf"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "history",
    "chrome://favicon/"
  ]
}