W Select

W Select

Make everything in the page selectable

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "W Select",
  "description": "Make everything in the page selectable",
  "version": "1.0.6",
  "icons": {
    "16": "img/icon16.png",
    "18": "img/icon18.png",
    "19": "img/icon19.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "18": "img/icon18.png",
      "19": "img/icon19.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_title": "wSelect"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "third-party/jquery/jquery.min.js",
        "source/content-script/content-script.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "source/content-script/content-script.html",
    "source/script.min.js",
    "img/icon128.png",
    "third-party/jquery/jquery.min.js"
  ],
  "background": {
    "scripts": [
      "source/background.min.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "contextMenus",
    "storage"
  ],
  "incognito": "split"
}