Pick Dino Auto Filler

Pick Dino Auto Filler

An Automation tool helps you to store and auto fill records.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pick Dino Auto Filler",
  "description": "An Automation tool helps you to store and auto fill records.",
  "version": "0.20",
  "default_locale": "en",
  "short_name": "Pick Dino",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "src/js/jquery.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "background",
    "activeTab",
    "identity",
    "storage",
    "notifications",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "commands": {
    "cmdAutoFill": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Command+Shift+F"
      },
      "description": "Helps in Auto Fill"
    },
    "cmdStartScrap": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Command+Shift+S"
      },
      "description": "Helps in Start Scrapping"
    },
    "cmdCharCount": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Command+Shift+V"
      },
      "description": "Helps in Character Count"
    }
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "images/alert48.png"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}