ColorFont - Color and Font Picker

ColorFont - Color and Font Picker

Advanced Color and Font Picker to speed up your web design

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "homepage_url": "https://colorfont.io",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage",
    "fontSettings"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    "popup.html",
    "pickers.html",
    "img/colorfont_cursor.png",
    "img/crosshair.png"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'  https://www.googleapis.com/ http://localhost:8098; object-src 'self'",
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "version": "1.2.10"
}