Pincone

Pincone

Share links and knowledge, privately or with a team.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pincone",
  "description": "Share links and knowledge, privately or with a team.",
  "version": "1.3.0",
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon16_light.png",
    "32": "icon32_light.png",
    "48": "icon48_light.png",
    "96": "icon96_light.png",
    "128": "icon128_light.png"
  },
  "host_permissions": [
    "http://localhost:3000/graphql",
    "<all_urls>"
  ],
  "permissions": [
    "scripting",
    "storage"
  ]
}