Keep it Quick

Keep important data and info and reuse it quickly.

Cos'è Keep it Quick?

Keep it Quick è un'estensione di Chrome sviluppata da etaylib, e la sua funzione principale è "Keep important data and info and reuse it quickly.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Keep it Quick

Scarica i file di estensione Keep it Quick in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Keep it Quick Keep it Quick
ID gobpjokhejbdfdmdoojdkkliikomniol
URL Ufficiale https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol
Descrizione Keep important data and info and reuse it quickly.
Dimensione del File 126 KB
Conteggio Installazioni 312
Versione Corrente 0.1.0
Ultimo Aggiornamento 2019-02-02
Data di Pubblicazione 2019-02-02
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore etaylib
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://etaylib.s3.amazonaws.com/privacy.html
Lingue Supportate 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"
        ]
    }
}