Alphaseq Chrome Extension

Alphaseq Chrome Extension

This chrome extension fills out forms automatically and gives option to encrypt/decrypt text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Alphaseq Chrome Extension",
  "version": "0.0.0.2",
  "manifest_version": 2,
  "description": "This chrome extension fills out forms automatically and gives option to encrypt/decrypt text.",
  "browser_action": {
    "default_icon": "icon-128.png",
    "default_popup": "main.html"
  },
  "options_ui": {
    "page": "settings.html",
    "chrome_style": true
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "activeTab",
    "proxy",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.8.2.min.js",
        "run.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "main.html",
  "background": {
    "page": "background.html"
  }
}