Clarity

Take notes at the speed of your thoughts!

什麼是Clarity?

Clarity是由Abu開發的Chrome擴展程式,該擴展的主要功能是“Take notes at the speed of your thoughts!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Clarity擴展crx文件

下載Clarity擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}