Linetef

Linetef

Linetef intention is to allow users to quickly add guide lines to either check if two elements are aligned, measure elements or…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Linetef",
  "description": "",
  "version": "0.2.1",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "Linetef",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}