Keep it Quick
Keep important data and info and reuse it quickly.
Vad är Keep it Quick?
Keep it Quick är en Chrome-tillägg utvecklad av etaylib, och dess huvudfunktion är "Keep important data and info and reuse it quickly.".
Tilläggsskärmbilder
Ladda ner Keep it Quick-förlängningens CRX-fil
Ladda ner Keep it Quick-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | gobpjokhejbdfdmdoojdkkliikomniol |
Officiell webbadress | https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol |
Beskrivning | Keep important data and info and reuse it quickly. |
Filstorlek | 126 KB |
Antal Installationer | 312 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2019-02-02 |
Publiceringsdatum | 2019-02-02 |
Betyg | 3.00/5 Totalt 1 Betyg |
Utvecklare | etaylib |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://etaylib.s3.amazonaws.com/privacy.html |
Stödda Språk | 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" ] } } |