Designer Tools

Designer Tools

Measure and align elements within Chrome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_title__",
  "short_name": "DesignerTools",
  "version": "4.21",
  "manifest_version": 3,
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "offline_enabled": true,
  "homepage_url": "https://designer.tools/",
  "icons": {
    "16": "img/appicons/icon16.png",
    "19": "img/appicons/icon19.png",
    "32": "img/appicons/icon32.png",
    "48": "img/appicons/icon48.png",
    "128": "img/appicons/icon128.png",
    "512": "img/appicons/icon512.png"
  },
  "background": {
    "service_worker": "src/background/index.js",
    "type": "module"
  },
  "action": {
    "default_title": "__MSG_open_extension__"
  },
  "permissions": [
    "identity",
    "identity.email",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*",
    "file:///*",
    "https://www.googleapis.com/"
  ],
  "oauth2": {
    "client_id": "665859454684-s6nmohpktccl2srxvc67thbmpclpa36v.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login",
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "omnibox": {
    "keyword": "design"
  },
  "commands": {
    "enable": {
      "suggested_key": {
        "default": "Alt+I",
        "windows": "Alt+I",
        "mac": "Alt+I"
      },
      "description": "__MSG_open_extension__"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}