Zeplin DEV safety lock

Zeplin DEV safety lock

Lock add/remove color buttons. Lock add/remove text style buttons. Lock color name editing. Lock test style name editing. Данное…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zeplin DEV safety lock",
  "version": "0.2",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "https://app.zeplin.io/*"
  ],
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://app.zeplin.io/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "icons": {
    "48": "gas_mask_48.png",
    "64": "gas_mask_64.png",
    "128": "gas_mask_128.png",
    "256": "gas_mask_256.png"
  },
  "browser_action": {
    "name": "Click to change the icon's color"
  }
}