Oracle Secure Form Fill Plugin

Oracle Secure Form Fill Plugin

Oracle Identity Cloud Service Secure Form Fill Plugin

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "__MSG_appShortName__",
  "default_locale": "en",
  "author": "Oracle",
  "version": "0.6.0.0",
  "incognito": "split",
  "icons": {
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_title": "__MSG_appTitle__",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentScripts/CombinedAPS.js",
        "scripts/contentScripts/detect.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "webNavigation",
    "cookies",
    "http://*/*",
    "https://*/*",
    "background",
    "unlimitedStorage",
    "contextMenus"
  ],
  "background": {
    "page": "html/background.html"
  },
  "web_accessible_resources": [
    "html/modeSwitcher.html",
    "html/updateHelper.html"
  ]
}