CADASHBOARD: Extension for Autofill

CADASHBOARD: Extension for Autofill

This extension fills up the form automatically by fetching its value from the CADASHBOARD.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CADASHBOARD: Extension for Autofill",
  "description": "This extension fills up the form automatically by fetching its value from the CADASHBOARD.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "card.png",
    "default_popup": "popup.html",
    "default_title": "CADASHBOARD: Click here to Auto Fill."
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.cadashboard.com/Manage_Vault/*"
    ]
  }
}