Keep it Quick

Keep important data and info and reuse it quickly.

Was ist Keep it Quick?

Keep it Quick ist eine Chrome-Erweiterung, die von etaylib entwickelt wurde, und ihr Hauptmerkmal ist "Keep important data and info and reuse it quickly.".

Erweiterungsscreenshots

screenshot

Keep it Quick-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keep it Quick-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Keep it Quick Keep it Quick
ID gobpjokhejbdfdmdoojdkkliikomniol
Offizielle URL https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol
Beschreibung Keep important data and info and reuse it quickly.
Dateigröße 126 KB
Installationsanzahl 312
Aktuelle Version 0.1.0
Letztes Update 2019-02-02
Veröffentlichungsdatum 2019-02-02
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler etaylib
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://etaylib.s3.amazonaws.com/privacy.html
Unterstützte Sprachen 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"
        ]
    }
}