Dopely Colors

Dopely Colors

Super fast color palette generator!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dopely Colors",
  "description": "Super fast color palette generator!",
  "version": "3.0.0",
  "homepage_url": "https://dopely.top",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "64": "logo64.png",
    "128": "logo128.png"
  },
  "browser_action": {
    "default_icon": "logo128.png",
    "default_title": "Dopely Colors"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_idle",
      "js": [
        "./content.js",
        "./jquery.js",
        "./axios.js",
        "./api.js",
        "./actionListener.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "index.html",
    "/static/*",
    "/static/js/main.js"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ]
}