Notes Catalog

Notes Catalog

Notes Catalog

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "rafi",
  "background": {
    "scripts": [
      "app/chrome/jquery-3.2.1.min.js",
      "app/chrome/background-script.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/img/catalog_document_16.png",
      "32": "assets/img/catalog_document_32.png"
    },
    "default_title": "Notes Catalog",
    "content_scripts": [
      {
        "matches": [
          "<all_urls>"
        ],
        "js": [
          "app/chrome/jquery-3.2.1.min.js",
          "muti-color-selection.js"
        ]
      }
    ]
  },
  "icons": {
    "16": "assets/img/catalog_document_16.png",
    "32": "assets/img/catalog_document_32.png",
    "48": "assets/img/catalog_document_48.png",
    "64": "assets/img/catalog_document_64.png",
    "128": "assets/img/catalog_document_128.png"
  },
  "manifest_version": 2,
  "name": "Notes Catalog",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "version": "1.1.0",
  "description": "Notes Catalog",
  "web_accessible_resources": [
    "app/index.html",
    "assets/img/NC-Logo.jpg"
  ]
}