Note Tab

Chrome extension for quick notes and calculations in the new tab

Qu'est-ce que Note Tab ?

Note Tab est une extension Chrome développée par Yuriy Romadin, et sa fonction principale est "Chrome extension for quick notes and calculations in the new tab".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Note Tab

Téléchargez les fichiers d'extension Note Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Note Tab Note Tab
ID gefmkkebioafinkcmbdpncgnndifcbea
URL Officiel https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea
Description Chrome extension for quick notes and calculations in the new tab
Taille du Fichier 2.25 MB
Nombre d'Installations 59
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 5.00/5 Total 2 Évaluations
Développeur Yuriy Romadin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/yuriyromadin/notetab
URL de la Page d'Aide https://github.com/yuriyromadin/notetab
Langues Prises en Charge 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"
    }
}