Surround it!

Surround it!

Simply wrap text in any brackets or parentheses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Surround it!",
  "short_name": "Surround it",
  "version": "0.2.0",
  "description": "Simply wrap text in any brackets or parentheses.",
  "author": "[email protected]",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "https://*/",
        "http://*/"
      ],
      "js": [
        "libs/jquery.min.js",
        "background.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/img16.png",
    "32": "assets/icons/img32.png",
    "48": "assets/icons/img48.png",
    "128": "assets/icons/img128.png"
  }
}