Notes – Organize your Zeplin Comments

Notes – Organize your Zeplin Comments

This extension collects all the notes within a Zeplin project and displays them in a filterable list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Notes – Organize your Zeplin Comments",
  "description": "This extension collects all the notes within a Zeplin project and displays them in a filterable list.",
  "version": "1.4.15",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "512": "img/icon512.png"
  },
  "background": {
    "service_worker": "js/background.min.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/jquery-ui.min.js",
        "js/content_scripts.min.js"
      ],
      "css": [
        "css/izn-extras.min.css",
        "css/izn-zeplin-reset.min.css",
        "css/izn-settings.min.css",
        "css/izn-buttons.min.css",
        "css/izn-modals.min.css",
        "css/izn.min.css",
        "css/izn-search.min.css",
        "css/izn-stats.min.css",
        "css/izn-details.min.css"
      ],
      "matches": [
        "http://app.zeplin.io/*",
        "https://app.zeplin.io/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "48": "img/icon48.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "localization/*.json",
        "html/*.html",
        "img/*.png",
        "img/*.gif",
        "img/*.svg",
        "js/inject_script_collect.min.js",
        "js/inject_script_variables.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://app.zeplin.io/*",
    "https://app.zeplin.io/*"
  ]
}