Keep it Quick
Keep important data and info and reuse it quickly.
Co to jest Keep it Quick?
Keep it Quick to rozszerzenie Chrome opracowane przez etaylib, a jego główną funkcją jest „Keep important data and info and reuse it quickly.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Keep it Quick
Pobierz pliki rozszerzeń Keep it Quick w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gobpjokhejbdfdmdoojdkkliikomniol |
Oficjalny URL | https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol |
Opis | Keep important data and info and reuse it quickly. |
Rozmiar pliku | 126 KB |
Liczba instalacji | 312 |
Aktualna Wersja | 0.1.0 |
Ostatnia Aktualizacja | 2019-02-02 |
Data Publikacji | 2019-02-02 |
Ocena | 3.00/5 Łącznie 1 Oceny |
Deweloper | etaylib |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://etaylib.s3.amazonaws.com/privacy.html |
Obsługiwane Języki | 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" ] } } |