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
官方URL 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"
    }
}