AutoComplete

AutoComplete

This extension complete phrases from short symbol combinations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "artem.ibragimov",
  "name": "AutoComplete",
  "description": "This extension complete phrases from short symbol combinations",
  "version": "0.4",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "./asset/i16.png",
    "48": "./asset/i48.png",
    "128": "./asset/i128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "main.js"
      ]
    }
  ],
  "options_page": "options.html"
}