Text Snippets

Right click to quickly insert text snippets and save time with things like customer service and support through email or any website

Was ist Text Snippets?

Text Snippets ist eine Chrome-Erweiterung, die von xcc entwickelt wurde, und ihr Hauptmerkmal ist "Right click to quickly insert text snippets and save time with things like customer service and support through email or any website".

Erweiterungsscreenshots

screenshot

Text Snippets-Erweiterungs-CRX-Datei herunterladen

Laden Sie Text Snippets-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

                        Save and quickly insert commonly used text snippets and templates by right clicking on text fields on any website. Useful for customer service, support, sales, or any communication online. 

Based on the Inserttext extension which stopped working and was never fixed.                    

Grundlegende Informationen zur Erweiterung

Name Text Snippets Text Snippets
ID jggnilkehdabmihebipcodnnjoepllao
Offizielle URL https://chromewebstore.google.com/detail/text-snippets/jggnilkehdabmihebipcodnnjoepllao
Beschreibung Right click to quickly insert text snippets and save time with things like customer service and support through email or any website
Dateigröße 1.14 MB
Installationsanzahl 6,828
Aktuelle Version 1.10
Letztes Update 2018-03-26
Veröffentlichungsdatum 2018-03-25
Bewertung 3.33/5 Insgesamt 21 Bewertungen
Entwickler xcc
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Snippets",
    "version": "1.10",
    "description": "Right click to quickly insert text snippets and save time with things like customer service and support through email or any website",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "lib\/store.js",
            "lib\/settings.js",
            "lib\/menu.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "",
        "contextMenus"
    ]
}