vt-autologin

vt-autologin

A Firefox-Extension for auto login to various pages. It can be used when building a kiosk-device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.5.1",
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "{b2f7970d-ac8e-469e-a626-4bbee58ac6fb}"
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "tabs",
    "*://*/*"
  ],
  "icons": {
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_title": "__MSG_appName__",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "app.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}