Clarity

Take notes at the speed of your thoughts!

Clarityคืออะไร?

Clarity เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Abu และคุณลักษณะหลักของมันคือ "Take notes at the speed of your thoughts!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clarity

ดาวน์โหลดไฟล์ส่วนขยาย 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
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": [
                ""
            ]
        }
    ]
}