Sema Login Autocomplete

Sema Login Autocomplete

Configure users credentials for each environment of your development web-projects. It's more than an autocomplete feature :-)

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_extName__",
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "author": "Sema (José Manuel García García)",
  "browser_action": {
    "default_icon": "icons/16/s2.png",
    "default_title": "Sema Login Autocomplete Extension",
    "default_popup": "browser/browser-action.html"
  },
  "background": {
    "scripts": [
      "libs/jquery.js",
      "background/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "libs/jquery.js",
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/16/s2.png",
    "48": "icons/48/s2.png",
    "128": "icons/128/s2.png"
  },
  "offline_enabled": true,
  "options_page": "options/options.html",
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "clipboardRead",
    "clipboardWrite",
    "contentSettings",
    "storage",
    "tabs",
    "*://*/*"
  ]
}