Note Tab

Chrome extension for quick notes and calculations in the new tab

What is Note Tab?

Note Tab is a Chrome extension developed by Yuriy Romadin, and its main feature is "Chrome extension for quick notes and calculations in the new tab".

Extension Screenshots

screenshot
screenshot
screenshot

Download Note Tab Extension CRX File

Download Note Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Note Tab Note Tab
ID gefmkkebioafinkcmbdpncgnndifcbea
Official URL https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea
Description Chrome extension for quick notes and calculations in the new tab
File Size 2.25 MB
Installation Count 59
Current Version 1.0.1
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 5.00/5 Total 2 Ratings
Developer Yuriy Romadin
Email [email protected]
Payment Type free
Extension Website https://github.com/yuriyromadin/notetab
Help Page URL https://github.com/yuriyromadin/notetab
Supported Languages 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"
    }
}