Copy & Paste
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
Что такое Copy & Paste?
Copy & Paste - это расширение Chrome, разработанное gal.bogdan2015, и его основная функция - "The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…".
Снимки экрана расширения
Скачать файл CRX расширения Copy & Paste
Скачайте файлы расширений Copy & Paste в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them. Save the data you need with one click by simply copying it. Just use Ctrl+c.
Основная информация о расширении
Название | Copy & Paste |
ID | oijiikmgkljldpbpddpmhiblpgkciobn |
Официальный URL | https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn |
Описание | The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have… |
Размер файла | 81.47 KB |
Количество установок | 889 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-06-29 |
Дата публикации | 2020-06-28 |
Разработчик | gal.bogdan2015 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy & Paste", "version": "1.0", "icons": { "32": "img\/logo32.png", "48": "img\/logo48.png" }, "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/fonts.googleapis.com\/*", "storage" ], "background": { "scripts": [ "js\/libs\/jquery-3.2.1.min.js", "js\/libs\/safeResponse.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/oncopy.js" ] } ], "browser_action": { "default_title": "Copy & Paste", "default_icon": "img\/logo64.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |