Note Tab

Chrome extension for quick notes and calculations in the new tab

ما هو Note Tab؟

Note Tab هو إضافة Chrome تم تطويرها بواسطة Yuriy Romadin، والميزة الرئيسية لها هي "Chrome extension for quick notes and calculations in the new tab".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Note Tab

قم بتنزيل ملفات الامتداد Note Tab بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}