Note Tab

Chrome extension for quick notes and calculations in the new tab

什麼是Note Tab?

Note Tab是由Yuriy Romadin開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension for quick notes and calculations in the new tab”。

擴展截圖

screenshot
screenshot
screenshot

下載Note Tab擴展crx文件

下載Note Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Note Tab Note Tab
ID gefmkkebioafinkcmbdpncgnndifcbea
官方網址 https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea
簡介 Chrome extension for quick notes and calculations in the new tab
檔案大小 2.25 MB
安裝次數 59
目前版本 1.0.1
更新時間 2019-03-08
上架時間 2019-03-08
評分 5.00/5 共 2 次評分
開發者 Yuriy Romadin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/yuriyromadin/notetab
說明頁面URL https://github.com/yuriyromadin/notetab
支援的語言 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"
    }
}