Paste From Context Menu

This extension allows you to save predefined snippets and paste them to text inputs using context menu.

Что такое Paste From Context Menu?

Paste From Context Menu - это расширение Chrome, разработанное coder, и его основная функция - "This extension allows you to save predefined snippets and paste them to text inputs using context menu.".

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

screenshot
screenshot

Скачать файл CRX расширения Paste From Context Menu

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

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

                                            

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

Название Paste From Context Menu Paste From Context Menu
ID ihfogeehoikadinpdoeapemeolcppfjf
Официальный URL https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf
Описание This extension allows you to save predefined snippets and paste them to text inputs using context menu.
Размер файла 20.88 KB
Количество установок 3,181
Текущая Версия 1.0.1
Последнее Обновление 2016-10-14
Дата публикации 2016-10-14
Рейтинг 3.74/5 Всего 23 оценок
Разработчик coder
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste From Context Menu",
    "short_name": "pastefromcontextmenu",
    "version": "1.0.1",
    "author": "Coder",
    "description": "This extension allows you to save predefined snippets and paste them to text inputs using context menu.",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Paste From Context Menu",
        "default_icon": "icons\/48x48.png",
        "default_popup1": "popup.html"
    }
}