Keep it Quick
Keep important data and info and reuse it quickly.
Что такое Keep it Quick?
Keep it Quick - это расширение Chrome, разработанное etaylib, и его основная функция - "Keep important data and info and reuse it quickly.".
Снимки экрана расширения
Скачать файл CRX расширения Keep it Quick
Скачайте файлы расширений Keep it Quick в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Have you ever used the computer and on some point really needed to use your driver's licence id, your office address or your parent PO BOX number? How many times did you have to get up of your chair and look for it? Well, now you can keep the data INSIDE the browser for easy fetching. Quickly add, remove, copy or fill any piece of important data you need for later use. Important: Your data is discrete, we don't save it or track it.
Основная информация о расширении
Название | |
ID | gobpjokhejbdfdmdoojdkkliikomniol |
Официальный URL | https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol |
Описание | Keep important data and info and reuse it quickly. |
Размер файла | 126 KB |
Количество установок | 312 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2019-02-02 |
Дата публикации | 2019-02-02 |
Рейтинг | 3.00/5 Всего 1 оценок |
Разработчик | etaylib |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://etaylib.s3.amazonaws.com/privacy.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Keep it Quick", "short_name": "Keep it Quick", "description": "Keep important data and info and reuse it quickly.", "version": "0.1.0", "browser_action": { "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.3.min.js", "scripts.js" ], "css": [ "style.css" ], "run_at": "document_start", "all_frames": true, "match_about_blank": true } ], "icons": { "128": "logo.png", "16": "logo.png", "48": "logo.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "contextMenus" ], "background": { "scripts": [ "jquery-1.11.3.min.js", "background.js" ] } } |