Category Tabs for Google Keep™

Category Tabs for Google Keep™

Better organise your Google Keep notes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "20.1.3",
  "name": "Category Tabs for Google Keep™",
  "short_name": "Tabs for Keep",
  "description": "__MSG_cj_i18n_01963__",
  "author": "Carlos Jeurissen",
  "homepage_url": "https://apps.jeurissen.co/category-tabs-for-google-keep",
  "developer": {
    "name": "Carlos Jeurissen",
    "url": "https://apps.jeurissen.co/"
  },
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "default-src 'none'; child-src 'none'; manifest-src 'none'; media-src 'none'; object-src 'none'; worker-src 'none'; connect-src 'none'; frame-src 'none'; font-src 'none'; script-src-elem 'self'; style-src-elem 'none'; img-src data:; script-src 'self'; script-src-attr 'none'; style-src 'self'; style-src-attr 'none'; base-uri 'none'; form-action 'none'; frame-ancestors https://keep.google.com/; block-all-mixed-content; upgrade-insecure-requests; report-uri https://api.jeurissen.co/reports/csp/webext/ctfgk/"
  },
  "offline_enabled": true,
  "container": "GOOGLE_DRIVE",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "externally_connectable": {
    "ids": [],
    "accepts_tls_channel_id": false
  },
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "96": "/images/icon-96.png",
    "128": "/images/icon-128.png"
  },
  "permissions": [
    "storage",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "https://keep.google.com/*"
  ],
  "background": {
    "service_worker": "/background.js"
  },
  "options_page": "/views/options.html?standalone=1",
  "options_ui": {
    "page": "/views/options.html",
    "browser_style": false
  },
  "action": {
    "browser_style": false,
    "default_title": "__MSG_cj_i18n_01964__"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/views/options.html",
        "/_locales/*"
      ],
      "matches": [
        "https://keep.google.com/*"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "description": "__MSG_cj_i18n_01964__"
    }
  },
  "content_scripts": [
    {
      "css": [
        "/styles/content-script.css"
      ],
      "js": [
        "/scripts/content-script.js"
      ],
      "matches": [
        "https://keep.google.com/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}