Chrome Templates

Chrome Templates

Create your templates (or snippets) in Google Chrome and paste them in any website. You can: - create your templates from…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.5.10",
  "name": "Chrome Templates",
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png"
    }
  },
  "permissions": [
    "alarms",
    "storage",
    "activeTab",
    "clipboardWrite",
    "clipboardRead",
    "contextMenus"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "./assets/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.js"
      ],
      "css": [
        "assets/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}