Guides

Guides

This simple app allows you to create modify and delete horizontal and vertical guides to check if the elements are correctly aligned

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Guides",
  "description": "This simple app allows you to create modify and delete horizontal and vertical guides to check if the elements are correctly aligned",
  "version": "2.1.1",
  "homepage_url": "https://github.com/StefanoVollono/guides",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icons/icon19.png",
      "48": "images/icons/icon48.png",
      "128": "images/icons/icon128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/hruler.png",
        "images/vruler.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}