Cacher

Cacher

Save code snippets from anywhere on the web. Companion extension to Cacher, the code snippet organizer for pro developers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cacher",
  "version": "1.2.0",
  "description": "Save code snippets from anywhere on the web. Companion extension to Cacher, the code snippet organizer for pro developers.",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "notifications",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://app.cacher.test/*",
      "*://app.cacher.io/*"
    ]
  },
  "action": {
    "default_popup": "popup/index.html",
    "default_title": "Cacher",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}