MOO Color Picker

MOO Color Picker

To celebrate the 100th anniversary of the Bauhaus, MOO has created this simple Chrome extension to help spark creativity.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MOO Color Picker",
  "description": "To celebrate the 100th anniversary of the Bauhaus, MOO has created this simple Chrome extension to help spark creativity. ",
  "version": "0.0.3",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Open the popup",
    "default_icon": {
      "19": "icons/19x19.png",
      "38": "icons/38x38.png"
    }
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.bundle.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.google.com/*",
      "*://*.chromium.org/*"
    ],
    "accepts_tls_channel_id": false
  },
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "96": "icons/96x96.png",
    "128": "icons/128x128.png"
  }
}