Quick Notes

Make and access notes quickly, at the launch of a new tab.

Was ist Quick Notes?

Quick Notes ist eine Chrome-Erweiterung, die von sagar0907 entwickelt wurde, und ihr Hauptmerkmal ist "Make and access notes quickly, at the launch of a new tab.".

Erweiterungsscreenshots

screenshot

Quick Notes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick Notes-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

                        Quick Notes lets you make notes on the fly which are accessible at the launch a new tab.
It helps you organise your notes and colour code them as you please. It lets you add rich formatted text, images and links. Also drag and drop pretty much any thing you find interesting while you browse the internet.
You can contribute at https://github.com/sagar0907/quickNotes. Feature requests are welcome.                    

Grundlegende Informationen zur Erweiterung

Name Quick Notes Quick Notes
ID igjmkejolekkpjnaeknjgaghhlhhekle
Offizielle URL https://chromewebstore.google.com/detail/quick-notes/igjmkejolekkpjnaeknjgaghhlhhekle
Beschreibung Make and access notes quickly, at the launch of a new tab.
Dateigröße 1.03 MB
Installationsanzahl 1,883
Aktuelle Version 0.0.1.5
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 4.00/5 Insgesamt 9 Bewertungen
Entwickler sagar0907
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Notes",
    "short_name": "Quick Notes",
    "description": "Make and access notes quickly, at the launch of a new tab.",
    "version": "0.0.1.5",
    "browser_action": {
        "default_icon": "images\/Quick_Note_Icon_48.png",
        "default_title": "Quick Notes"
    },
    "icons": {
        "16": "images\/Quick_Note_Icon_16.png",
        "48": "images\/Quick_Note_Icon_48.png",
        "128": "images\/Quick_Note_Icon_128.png"
    },
    "chrome_url_overrides": {
        "newtab": "html\/newtab.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "background",
        "contextMenus",
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "background": {
        "page": "html\/background.html",
        "persistent": true
    }
}