Note Tab

Chrome extension for quick notes and calculations in the new tab

Note Tab क्या है?

Note Tab Yuriy Romadin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension for quick notes and calculations in the new tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Note Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
    }
}