PixelPilot (Pixel Perfect Design Helper)

PixelPilot (Pixel Perfect Design Helper)

Pixel Pilot acts as a meticulous design assistant, guaranteeing pixel-perfect precision.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PixelPilot (Pixel Perfect Design Helper)",
  "description": "Pixel Pilot acts as a meticulous design assistant, guaranteeing pixel-perfect precision.",
  "version": "2.1",
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "userDocumentHandle.js",
        "template.js",
        "config.js",
        "events.js",
        "colorPaletteHelper.js",
        "colorPalette.js",
        "colorAction.js",
        "index.js",
        "keyBoardShortCut.js"
      ],
      "css": [
        "popup.css"
      ]
    }
  ]
}