Category Icons for Google Keep™

Category Icons for Google Keep™

Easily add fancy icons to customize your tabs in Google Keep™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Category Icons for Google Keep™",
  "version": "1.0",
  "description": "Easily add fancy icons to customize your tabs in Google Keep™",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/myStyles.css"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "matches": [
        "https://keep.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "/icons/category_icons.png"
  }
}