Note Tab

Chrome extension for quick notes and calculations in the new tab

Hvad er Note Tab?

Note Tab er en Chrome-udvidelse udviklet af Yuriy Romadin, og dens hovedfunktion er "Chrome extension for quick notes and calculations in the new tab".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Note Tab-udvidelses-CRX-fil

Download Note Tab-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Note Tab Note Tab
ID gefmkkebioafinkcmbdpncgnndifcbea
Officiel URL https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea
Beskrivelse Chrome extension for quick notes and calculations in the new tab
Filstørrelse 2.25 MB
Antal Installationer 59
Nuværende Version 1.0.1
Senest Opdateret 2019-03-08
Udgivelsesdato 2019-03-08
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Yuriy Romadin
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/yuriyromadin/notetab
Hjælpeside-URL https://github.com/yuriyromadin/notetab
Understøttede Sprog 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"
    }
}