Paste Enforcer

It will type the contents of your Clipboard so you can paste text in websites that block it

Что такое Paste Enforcer?

Paste Enforcer - это расширение Chrome, разработанное Unknown, и его основная функция - "It will type the contents of your Clipboard so you can paste text in websites that block it".

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

screenshot

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

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

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

                        It will type the contents of your Clipboard so you can paste text in websites that block it.

Just right click the field and select: "Force paste!"                    

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

Название Paste Enforcer Paste Enforcer
ID klioagabdlbmbhomedhkfkjggelmfclg
Официальный URL https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg
Описание It will type the contents of your Clipboard so you can paste text in websites that block it
Размер файла 64.39 KB
Количество установок 1,677
Текущая Версия 1.1
Последнее Обновление 2018-12-12
Дата публикации 2018-12-06
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paste Enforcer",
    "version": "1.1",
    "description": "It will type the contents of your Clipboard so you can paste text in websites that block it",
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardRead"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "vendor\/bililiteRange.js",
                "vendor\/jquery.sendkeys.js",
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}