context-note

context-note

This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "context-note",
  "version": "1.3.10",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    },
    "default_title": "Context Note"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/main.js"
      ],
      "css": [
        "content-scripts/main.css",
        "content-scripts/main.44bddb14.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/*"
      ]
    },
    {
      "resources": [
        "/assets/element-icons.9c88a535.woff",
        "/assets/element-icons.de5eb258.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "activeTab",
    "storage"
  ]
}