MultiSelect

MultiSelect

Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MultiSelect",
  "description": "Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.",
  "version": "0.2",
  "browser_action": {
    "default_icon": "msicon-48.png",
    "default_title": "Enable MultiSelect"
  },
  "icons": {
    "16": "msicon-16.png",
    "48": "msicon-48.png",
    "128": "msicon-128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "multiselect.js"
    ]
  }
}