Keep it Quick
Keep important data and info and reuse it quickly.
O que é Keep it Quick?
Keep it Quick é uma extensão do Chrome desenvolvida por etaylib, e sua principal característica é "Keep important data and info and reuse it quickly.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Keep it Quick
Baixe arquivos de extensão Keep it Quick no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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. Informações Básicas da Extensão
| Nome | |
| ID | gobpjokhejbdfdmdoojdkkliikomniol |
| URL Oficial | https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol |
| Descrição | Keep important data and info and reuse it quickly. |
| Tamanho do Arquivo | 126 KB |
| Contagem de Instalações | 312 |
| Versão Atual | 0.1.0 |
| Última Atualização | 2019-02-02 |
| Data de Publicação | 2019-02-02 |
| Classificação | 3.00/5 Total de 1 Avaliações |
| Desenvolvedor | etaylib |
| [email protected] | |
| Tipo de Pagamento | free |
| URL da Página de Política de Privacidade | https://etaylib.s3.amazonaws.com/privacy.html |
| Idiomas Suportados | 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"
]
}
} | |