Clarity

Take notes at the speed of your thoughts!

Clarity क्या है?

Clarity Abu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take notes at the speed of your thoughts!"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Capture notes in YouTube at the speed of your thoughts by just using notion style markdowns, keyboard shortcuts or markdowns. Take notes super quickly by just focusing on the content and not getting distracted by clicking lots of different icons. :)                    

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

नाम Clarity Clarity
ID ljjmlfeagplfhbfkfapkhncmdhbmnhkb
आधिकारिक URL https://chromewebstore.google.com/detail/clarity/ljjmlfeagplfhbfkfapkhncmdhbmnhkb
विवरण Take notes at the speed of your thoughts!
फ़ाइल का आकार 1.63 MB
स्थापना संख्या 1,683
वर्तमान संस्करण 0.0.0.22
अंतिम अपडेट 2023-07-31
प्रकाशन तिथि 2021-10-08
रेटिंग 4.65/5 कुल 17 रेटिंग्स
डेवलपर Abu
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.claritynotes.io/privacypolicy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clarity",
    "description": "Take notes at the speed of your thoughts!",
    "version": "0.0.0.22",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.claritynotes.io\/*",
                "https:\/\/app.claritynotes.io\/*"
            ],
            "js": [
                "jquery.js",
                "supabase.js",
                "airtable.js",
                "easymde.js",
                "snarkdown.js",
                "get-video-id.js",
                "content-script.js"
            ],
            "css": [
                "css\/all.min.css",
                "style.css",
                "easymde.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/notes-16.png",
        "48": "images\/notes-48.png",
        "128": "images\/notes-128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "action": [],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            }
        }
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "css\/all.min.css",
                "webfonts\/*",
                "fonts\/Inter-VariableFont_slnt,wght.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ]
}