Customize Tabs for Google Keep™

Customize Tabs for Google Keep™

Customize Tabs for Google Keep™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_application_title__",
  "version": "1.0.3",
  "description": "__MSG_application_description__",
  "manifest_version": 2,
  "container": [
    "GOOGLE_DRIVE"
  ],
  "default_locale": "en_US",
  "offline_enabled": true,
  "content_scripts": [
    {
      "matches": [
        "https://keep.google.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/myStyles.css"
      ],
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "64": "icons/icon-64.png",
      "128": "icons/icon-128.png",
      "256": "icons/icon-256.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "/js/update-conf.js",
      "/js/update.min.js"
    ],
    "persistent": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}