stickynote tab

override the new tab page so that user can create sticky notes to take notes

stickynote tab क्या है?

stickynote tab ellayang40 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "override the new tab page so that user can create sticky notes to take notes"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में stickynote tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        * use new tab page to take quick notes on sticky notes 
* notes will be saved in the browser so that next time you open the new tab page, you will see your notes
* note allows text formatting such as bolding, lists, changing font color, etc
* can create, delete, and move notes
* can minimize and maximize the notes

Great for creating todo list and other quick notes for temporary use.                    

एक्सटेंशन की मूल जानकारी

नाम stickynote tab stickynote tab
ID cpnckoglpiageliaeeopbhdahilnjeeb
आधिकारिक URL https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb
विवरण override the new tab page so that user can create sticky notes to take notes
फ़ाइल का आकार 3.48 MB
स्थापना संख्या 193
वर्तमान संस्करण 1.1
अंतिम अपडेट 2021-09-14
प्रकाशन तिथि 2020-05-08
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर ellayang40
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/yinglan98/chrome-ext---sticky
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "stickynote tab",
    "version": "1.1",
    "description": "override the new tab page so that user can create sticky notes to take notes",
    "permissions": [
        "storage",
        "tabs"
    ],
    "manifest_version": 2,
    "chrome_url_overrides": {
        "newtab": "dis_quill_1.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "images\/sticky_icon_16.png",
        "48": "images\/sticky_icon_48.png",
        "128": "images\/sticky_icon_128.png"
    }
}