Clarity

Take notes at the speed of your thoughts!

Cos'è Clarity?

Clarity è un'estensione di Chrome sviluppata da Abu, e la sua funzione principale è "Take notes at the speed of your thoughts!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Clarity

Scarica i file di estensione Clarity in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Clarity Clarity
ID ljjmlfeagplfhbfkfapkhncmdhbmnhkb
URL Ufficiale https://chromewebstore.google.com/detail/clarity/ljjmlfeagplfhbfkfapkhncmdhbmnhkb
Descrizione Take notes at the speed of your thoughts!
Dimensione del File 1.63 MB
Conteggio Installazioni 1,683
Versione Corrente 0.0.0.22
Ultimo Aggiornamento 2023-07-31
Data di Pubblicazione 2021-10-08
Valutazione 4.65/5 Totale 17 Valutazioni
Sviluppatore Abu
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.claritynotes.io/privacypolicy.html
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}