DORy

DORy

The super slick chrome extension to jump to U.S. State DOR pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DORy",
  "description": "The super slick chrome extension to jump to U.S. State DOR pages.",
  "version": "1.9",
  "author": "Boundley",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/custom.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/dory16.png",
      "19": "images/dory19.png",
      "32": "images/dory32.png",
      "38": "images/dory38.png",
      "48": "images/dory48.png",
      "128": "images/dory128.png"
    },
    "default_popup": "index.html",
    "default_title": "Find that DOR!"
  },
  "icons": {
    "16": "images/dory16.png",
    "32": "images/dory32.png",
    "48": "images/dory48.png",
    "128": "images/dory128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Shift+Alt+F",
        "mac": "Alt+F"
      }
    }
  }
}