Keep it Quick

Keep important data and info and reuse it quickly.

Hvad er Keep it Quick?

Keep it Quick er en Chrome-udvidelse udviklet af etaylib, og dens hovedfunktion er "Keep important data and info and reuse it quickly.".

Udvidelsesskærmbilleder

screenshot

Download Keep it Quick-udvidelses-CRX-fil

Download Keep it Quick-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Keep it Quick Keep it Quick
ID gobpjokhejbdfdmdoojdkkliikomniol
Officiel URL https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol
Beskrivelse Keep important data and info and reuse it quickly.
Filstørrelse 126 KB
Antal Installationer 312
Nuværende Version 0.1.0
Senest Opdateret 2019-02-02
Udgivelsesdato 2019-02-02
Bedømmelse 3.00/5 Samlet 1 Bedømmelser
Udvikler etaylib
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://etaylib.s3.amazonaws.com/privacy.html
Understøttede Sprog 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"
        ]
    }
}