TextFast

TextFast

Have you ever felt it took too much work to type out long words or sentences? Or do you just desire to make shorthand macros for often-used words or even entire sentences? TextFast can make shorthand macros for words, sentences, or any text you want,

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Matheus Faustino",
  "developer": {
    "name": "Matheus Faustino",
    "url": "https://github.com/matheusfaustino"
  },
  "name": "TextFast",
  "version": "1.3.2",
  "description": "It gives you opportunity of replacing boring words with easier ones or type memes faster ¯\\_[ツ]_/¯ (shrug).",
  "permissions": [
    "notifications",
    "activeTab",
    "storage",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "text-replacer.js"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "public/config.html",
    "open_in_tab": true
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "56.0"
    }
  }
}