Workday Tools

Workday Tools

Search for highlighted text in Workday

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Workday Tools",
  "icons": {
    "128": "icon128.png"
  },
  "description": "Search for highlighted text in Workday",
  "version": "1.1",
  "permissions": [
    "contextMenus",
    "cookies",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "icon128.png"
  },
  "background": {
    "scripts": [
      "workday_tools.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.workday.com/*",
        "https://*.myworkday.com/*",
        "http://*.workday.com/*",
        "http://*.myworkday.com/*"
      ],
      "js": [
        "perform_start_proxy.js"
      ]
    }
  ],
  "manifest_version": 2
}