IntelliJ Surround My Text!

IntelliJ Surround My Text!

Wrap/surround selected text in forms with double quote (and whatever you want: single quote, comma, brace, curly, parenthesis, ...).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "IntelliJ Surround My Text!",
  "short_name": "SmT",
  "description": "Wrap/surround selected text in forms with double quote (and whatever you want: single quote, comma, brace, curly, parenthesis, ...).",
  "version": "1.0.0",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": "browser-icon128.png",
    "default_title": "IntelliJ Surround My Text!",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "256": "icon256.png",
    "512": "icon512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "web_accessible_resources": []
}