VS code Text Completer

VS code Text Completer

Completes your text, inspired by the VS code text completer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VS code Text Completer",
  "version": "1.1",
  "description": "Completes your text, inspired by the VS code text completer",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "contextMenus"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.com/*"
      ],
      "css": [
        "background-styles.css"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2
}