PasteEnabler

Paste when you're not allowed, copy when you're not allowed!

Что такое PasteEnabler?

PasteEnabler - это расширение Chrome, разработанное https://jonlu.ca, и его основная функция - "Paste when you're not allowed, copy when you're not allowed!".

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

screenshot

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

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

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

                        Reenables the following functionality on sites that disable it:

* Ability to paste content
* Ability to copy content
* Ability to cut content
* Ability to right click content
* Ability to autocomplete certain inputs
* Ability to select text
* Ability to drag and drop text to/from inputs

If a website does not allow you to copy and paste, or do any of the above, simply click the icon and try again!

Source code here: https://github.com/jonluca/PasteEnabler

Open an issue on GitHub if there are any sites on which this extension does not work!                    

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

Название PasteEnabler PasteEnabler
ID dhadehfniifbmemochpmbofcjckpdnnl
Официальный URL https://chromewebstore.google.com/detail/pasteenabler/dhadehfniifbmemochpmbofcjckpdnnl
Описание Paste when you're not allowed, copy when you're not allowed!
Размер файла 28.6 KB
Количество установок 2,141
Текущая Версия 0.3
Последнее Обновление 2021-06-10
Дата публикации 2019-05-03
Рейтинг 5.00/5 Всего 4 оценок
Разработчик https://jonlu.ca
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PasteEnabler",
    "description": "Paste when you're not allowed, copy when you're not allowed!",
    "version": "0.3",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "icons": {
        "64": "images\/icon64.png",
        "32": "images\/icon32.png",
        "38": "images\/icon.png",
        "128": "images\/icon128.png"
    },
    "homepage_url": "https:\/\/jonlu.ca",
    "web_accessible_resources": [
        "js\/*"
    ]
}