Templates

Allows to replace text shortcut with saved template by pressing tab button

Was ist Templates?

Templates ist eine Chrome-Erweiterung, die von Lless entwickelt wurde, und ihr Hauptmerkmal ist "Allows to replace text shortcut with saved template by pressing tab button".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Templates-Erweiterungs-CRX-Datei herunterladen

Laden Sie Templates-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Write messages faster!
This extension allows you to save frequently used text as templates. Just save template in extension and assign shortcut message for it.
After that in any textfield you can write this shortcut, press tab button - and shortcut will be replaced by your template!

Pros and cons:

+ Works everywhere in browser. GMail, Facebook, WhatsApp web, Jira and other services... Extension only needs a field, where you can write something

+ Totally free and has no advertisement

+ You don't have to use a mouse to insert template - only a keyboard

+ You're the one, who will сhoose a shortcut for your templates - so shortcuts will be memorized more quickly!

+ And you can find shortcut in search field by template part, if you do forget it...

+ Templates syncronise with Google account - if you use multiple computers, template list will be same on all

+ And, of course, you can change template and / or shortcut at any moment

...

- Makes you lazy sometimes...                    

Grundlegende Informationen zur Erweiterung

Name Templates Templates
ID chflkinkknpljaccjdccnogkelagodba
Offizielle URL https://chromewebstore.google.com/detail/templates/chflkinkknpljaccjdccnogkelagodba
Beschreibung Allows to replace text shortcut with saved template by pressing tab button
Dateigröße 146 KB
Installationsanzahl 274
Aktuelle Version 0.9
Letztes Update 2021-07-10
Veröffentlichungsdatum 2020-02-12
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Lless
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Templates",
    "version": "0.9",
    "description": "Allows to replace text shortcut with saved template by pressing tab button",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "38": "img\/icon38.png",
        "32": "img\/icon32.png",
        "24": "img\/icon24.png",
        "19": "img\/icon19.png",
        "16": "img\/icon16.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/libs\/mousetrap.changed.js",
                "js\/libs\/mousetrap-global-bind.js",
                "js\/contentScript.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "img\/icon128.png",
            "48": "img\/icon48.png",
            "38": "img\/icon38.png",
            "32": "img\/icon32.png",
            "24": "img\/icon24.png",
            "19": "img\/icon19.png",
            "16": "img\/icon16.png"
        },
        "default_popup": "popup.html"
    }
}