Note Tab

Chrome extension for quick notes and calculations in the new tab

Co to jest Note Tab?

Note Tab to rozszerzenie Chrome opracowane przez Yuriy Romadin, a jego główną funkcją jest „Chrome extension for quick notes and calculations in the new tab”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Note Tab

Pobierz pliki rozszerzeń Note Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Note Tab Note Tab
ID gefmkkebioafinkcmbdpncgnndifcbea
Oficjalny URL https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea
Opis Chrome extension for quick notes and calculations in the new tab
Rozmiar pliku 2.25 MB
Liczba instalacji 59
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Yuriy Romadin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/yuriyromadin/notetab
Adres URL Strony Pomocy https://github.com/yuriyromadin/notetab
Obsługiwane Języki 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"
    }
}