eCO2logy

eCO2logy

Surfer écolo, est-ce possible ?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "eCO2logy",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Surfer écolo, est-ce possible ?",
  "homepage_url": "https://chrome.google.com/webstore/detail/co₂-mon-amour-not/injkhbadkipaflldkehemjglmgdnfdoj",
  "icons": {
    "16": "icons/earth1.png",
    "48": "icons/earth1.png",
    "128": "icons/earth1.png"
  },
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "options_page": "src/options/index.html",
  "browser_action": {
    "default_icon": "icons/earth1.png",
    "default_title": "eCO₂logy",
    "default_popup": "src/browser_action/index.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}