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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}