Snippet Sage

Snippet Sage

Snippets at Your Fingertips!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Snippet Sage",
  "short_name": "snippetsage",
  "version": "0.1.0",
  "description": "Snippets at Your Fingertips!",
  "icons": {
    "16": "./logos/logo16.png",
    "32": "./logos/logo32.png",
    "64": "./logos/logo64.png",
    "128": "./logos/logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "js": [
        "scripts/localStorage.js"
      ],
      "matches": [
        "https://snippetsage.com/*",
        "https://*.snippetsage.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "externally_connectable": {
    "ids": [
      "mbiphihmcfaelfafklmbfecdmgnddmpb"
    ],
    "matches": [
      "https://*.snippetsage.com/*",
      "https://snippetsage.com/*"
    ]
  },
  "host_permissions": [
    "https://*/*"
  ],
  "action": {
    "default_popup": "./out/extension.html"
  },
  "author": "[email protected]"
}