Greenlight

Greenlight

A convenient browser extension that displays clothing brand sustainability grades and recommends sustainable alternatives

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Greenlight",
  "version": "0.2.12",
  "description": "A convenient browser extension that displays clothing brand sustainability grades and recommends sustainable alternatives",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "32": "images/Finished/32h/Green Icon.png",
    "48": "images/Finished/48w/Logo 48x48.png",
    "128": "images/Finished/128w/Logo 128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "images/Finished/24/darkGrey Icon.png"
    },
    "default_title": "Greenlight",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    "dicts/*.txt"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://d3js.org https://code.jquery.com; object-src 'self';",
  "manifest_version": 2
}