Pins - Once pin, never lost

Pins - Once pin, never lost

Pins will help you take notes on the fly and easily manage them. This extension helps to pin and use notes from any web page. Just…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.2",
  "short_name": "Pins",
  "name": "Pins - Once pin, never lost",
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/pin-16.png",
    "48": "assets/pin-48.png",
    "128": "assets/pin-128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.jpg",
        "*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}