Email Address Autocomplete

Email Address Autocomplete

התוסף מאפשר שני דברים: • השלמה אוטומטית בעת הקלדת כתובת דוא"ל, רשימת הסיומות להשלמה ניתנת להתאמה אישית. • ניתן להגדיר רשימת מילים…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Email Address Autocomplete",
  "version": "1.0.9",
  "author": "[email protected]",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "assets/img/icon16.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "vendors/jquery-1.11.3.min.js",
        "js/content-css.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "html/options.html",
  "icons": {
    "16": "assets/img/icon16.png",
    "24": "assets/img/icon24.png",
    "48": "assets/img/icon48.png",
    "64": "assets/img/icon64.png",
    "72": "assets/img/icon72.png",
    "96": "assets/img/icon96.png",
    "128": "assets/img/icon128.png"
  },
  "manifest_version": 2
}