Allow Clipboard
Allows clipboard read and write without user interaction.
Что такое Allow Clipboard?
Allow Clipboard - это расширение Chrome, разработанное Unknown, и его основная функция - "Allows clipboard read and write without user interaction.".
Снимки экрана расширения
Скачать файл CRX расширения Allow Clipboard
Скачайте файлы расширений Allow Clipboard в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Chrome Extension that allows clipboard read and write without user interaction. Normally Chrome does not allow JavaScript access to the Clipboard without a user interaction (e.g. click). AllowClipboard extension can be useful in situations where clipboard access is needed out of band, such as during an asynchronous method call from the server.
Основная информация о расширении
Название | Allow Clipboard |
ID | bgafccceonganlcmcojjacanoadnhmac |
Официальный URL | https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac |
Описание | Allows clipboard read and write without user interaction. |
Размер файла | 28.08 KB |
Количество установок | 3,947 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2017-05-25 |
Дата публикации | 2017-05-25 |
Рейтинг | 2.00/5 Всего 8 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/itsmikeeng/AllowClipboard |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Allow Clipboard", "version": "1.0.3", "description": "Allows clipboard read and write without user interaction.", "icons": { "128": "icon_128.png" }, "background": { "persistent": false, "scripts": [ "background.js", "common.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "clipboardRead", "clipboardWrite", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "allowClipboardContentScript.js", "common.js" ] } ], "web_accessible_resources": [ "allowClipboardClient.js", "common.js" ], "options_page": "options.html" } |