Text Snippets

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

Что такое Text Snippets?

Text Snippets - это расширение Chrome, разработанное xcc, и его основная функция - "Right click to quickly insert text snippets and save time with things like customer service and support through email or any website".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Text Snippets

Скачайте файлы расширений Text Snippets в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Text Snippets Text Snippets
ID jggnilkehdabmihebipcodnnjoepllao
Официальный URL https://chromewebstore.google.com/detail/text-snippets/jggnilkehdabmihebipcodnnjoepllao
Описание Right click to quickly insert text snippets and save time with things like customer service and support through email or any website
Размер файла 1.14 MB
Количество установок 6,828
Текущая Версия 1.10
Последнее Обновление 2018-03-26
Дата публикации 2018-03-25
Рейтинг 3.33/5 Всего 21 оценок
Разработчик xcc
Тип оплаты free
Поддерживаемые языки 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"
    ]
}