Note Box

A chrome extension to add notes/todos based on URL

Note Boxคืออะไร?

Note Box เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mehul Lakhanpal และคุณลักษณะหลักของมันคือ "A chrome extension to add notes/todos based on URL"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Note Box ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add notes/todos in domain/URL environment. Revisit the same note list when back to that URL or access all the notes from the Homepage. No Login/Signup. All the notes are stored in the browser memory.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
คำอธิบาย A chrome extension to add notes/todos based on URL
ขนาดไฟล์ 1.57 MB
จำนวนการติดตั้ง 125
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2021-03-28
วันที่เผยแพร่ 2021-02-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Mehul Lakhanpal
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.codedrops.tech/products/note-box
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Note Box",
    "version": "2.0",
    "manifest_version": 3,
    "description": "A chrome extension to add notes\/todos based on URL",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Note Box",
        "default_popup": "build\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "https:\/\/www.codedrops.tech\/products\/note-box"
}