Color by Fardos - Color Picker

Color by Fardos - Color Picker

Pick colors from websites, save colors & gradients, get matching shades and tints and create beautiful gradients.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Color by Fardos - Color Picker",
  "short_name": "Color by Fardos - (Eye Dropper)",
  "description": "Pick colors from websites, save colors & gradients, get matching shades and tints and create beautiful gradients.",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "version": "1.3",
  "browser_action": {
    "default_icon": "logos/logo.png",
    "default_popup": "index.html",
    "default_title": "Color by Fardos"
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Pick colors from site"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self'; media-src *;",
  "permissions": [
    "storage",
    "activeTab",
    "<all_urls>",
    "https://*/*"
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./services/options/jquery.js",
        "./services/search/search.js",
        "./services/eyedropper/index.js"
      ],
      "css": [
        "./services/eyedropper/index.css"
      ]
    }
  ]
}