Notes

A clean and simple browser extension for managing notes.

Notes क्या है?

Notes https://lars.koelker.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A clean and simple browser extension for managing notes."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Managing notes made easy.

Notes is a clean and simple browser extension for managing notes.

Features:
* Create, edit and delete notes
* Define a priority for a note
* Create notes through your context menu
* Dynamic link preview (new!)

Options:
* Save your current draft
* Enable/disable the context menu
* Enable/disable the spellcheck for notes
* Enable/disable interaction with links
* Enable/disable link preview

Languages:
Notes is available in English and German.

For more information visit https://lars.koelker.dev/extensions/note
Documentation: https://lars.koelker.dev/extensions/note/documentation.php






Icons provided by feathericons.com.
"People in conference" photo by "History in HD" on unsplash.com.                    

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

नाम Notes Notes
ID gnikdgadoiinijjlgidpoiecoepnngfl
आधिकारिक URL https://chromewebstore.google.com/detail/notes/gnikdgadoiinijjlgidpoiecoepnngfl
विवरण A clean and simple browser extension for managing notes.
फ़ाइल का आकार 56.48 KB
स्थापना संख्या 142
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2023-11-10
प्रकाशन तिथि 2020-10-25
डेवलपर https://lars.koelker.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://lars.koelker.dev/extensions/note
सहायता पृष्ठ URL https://lars.koelker.dev/extensions/note/documentation.php
गोपनीयता नीति पृष्ठ URL https://lars.koelker.dev/privacy
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.2",
    "version_name": "1.0.2",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "icons": {
        "16": "img\/extension_icon\/16.png",
        "32": "img\/extension_icon\/32.png",
        "64": "img\/extension_icon\/64.png",
        "128": "img\/extension_icon\/128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "commands",
        "contextMenus"
    ],
    "default_locale": "en",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "notes"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+N",
                "mac": "Alt+N"
            }
        }
    },
    "background": {
        "service_worker": "sw.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lars.koelker.dev\/extensions\/note\/?version=*"
            ],
            "js": [
                "js\/hideUpdateNotice.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "manifest.json"
            ],
            "matches": [
                "https:\/\/*.koelker.dev\/*"
            ]
        }
    ]
}