Clarity

Take notes at the speed of your thoughts!

Hvad er Clarity?

Clarity er en Chrome-udvidelse udviklet af Abu, og dens hovedfunktion er "Take notes at the speed of your thoughts!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Clarity-udvidelses-CRX-fil

Download Clarity-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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. :)                    

Grundlæggende oplysninger om udvidelsen

Navn Clarity Clarity
ID ljjmlfeagplfhbfkfapkhncmdhbmnhkb
Officiel URL https://chromewebstore.google.com/detail/clarity/ljjmlfeagplfhbfkfapkhncmdhbmnhkb
Beskrivelse Take notes at the speed of your thoughts!
Filstørrelse 1.63 MB
Antal Installationer 1,683
Nuværende Version 0.0.0.22
Senest Opdateret 2023-07-31
Udgivelsesdato 2021-10-08
Bedømmelse 4.65/5 Samlet 17 Bedømmelser
Udvikler Abu
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.claritynotes.io/privacypolicy.html
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}