Nox Autofill

Nox Autofill

Nox Autofill fills out checkout forms automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nox Autofill",
  "description": "Nox Autofill fills out checkout forms automatically.",
  "author": "Nox Notify",
  "short_name": "Nox Autofill",
  "version": "1.0",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "browser_action": {
    "default_icon": "images/128.png",
    "icons": {
      "16": "images/16.png",
      "48": "images/48.png",
      "128": "images/128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "webNavigation",
    "tabs",
    "notifications",
    "http://*/",
    "https://*/",
    "<all_urls>",
    "storage"
  ],
  "web_accessible_resources": [
    "sidebar.html",
    "popup.html",
    "our_custom_script_0211.js"
  ]
}