DPS Password Guard

DPS Password Guard

Bring Safety To Your Passwords With Impenetrable Security Shield.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "DPS Password Guard",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_title": "DPS Password Guard",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/Lib/jquery.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/Lib/jquery-ui.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/Core.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/Constant.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/Service.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/SearchHelper.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/detectUser.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/notify.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "scripts/Background.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "Bring Safety To Your Passwords With Impenetrable Security Shield.",
  "icons": {
    "16": "./Images/icon-16.png",
    "32": "./Images/icon-32.png",
    "64": "./Images/icon-64.png"
  },
  "manifest_version": 2,
  "name": "DPS Password Guard",
  "optional_permissions": [
    "nativeMessaging",
    "history",
    "privacy"
  ],
  "permissions": [
    "storage",
    "idle",
    "tabs",
    "file:///*",
    "http://*/",
    "activeTab",
    "background",
    "https://*/*",
    "notifications",
    "*://*/scripts/*",
    "*://*.website.com/*",
    "webNavigation",
    "identity",
    "identity.email",
    "contentSettings",
    "management"
  ],
  "version": "1.0.0.0",
  "web_accessible_resources": [
    "/PopupTab.html",
    "/Images",
    "/DetectUser.html",
    "/scripts"
  ],
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}