Note Tab

Chrome extension for quick notes and calculations in the new tab

Was ist Note Tab?

Note Tab ist eine Chrome-Erweiterung, die von Yuriy Romadin entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension for quick notes and calculations in the new tab".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Note Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Note Tab-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

                        Your new tab page will be divided into two blocks: on the left, you have text/code editor for your quick notes or code snippets, on the right side you have "smart" calculator notepad, where you can perform basic math operations.                    

Grundlegende Informationen zur Erweiterung

Name Note Tab Note Tab
ID gefmkkebioafinkcmbdpncgnndifcbea
Offizielle URL https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea
Beschreibung Chrome extension for quick notes and calculations in the new tab
Dateigröße 2.25 MB
Installationsanzahl 59
Aktuelle Version 1.0.1
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Yuriy Romadin
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/yuriyromadin/notetab
Hilfeseite URL https://github.com/yuriyromadin/notetab
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Note Tab",
    "version": "1.0.1",
    "manifest_version": 2,
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "description": "Chrome extension for quick notes and calculations in the new tab",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "static\/app.background.js"
        ]
    },
    "browser_action": {
        "default_icon": "static\/icon-16.png"
    },
    "icons": {
        "16": "static\/icon-16.png",
        "48": "static\/icon-48.png",
        "128": "static\/icon-128.png"
    }
}