Note Box

A chrome extension to add notes/todos based on URL

Apa itu Note Box?

Note Box adalah ekstensi Chrome yang dikembangkan oleh Mehul Lakhanpal, dan fitur utamanya adalah "A chrome extension to add notes/todos based on URL".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Note Box

Unduh file ekstensi Note Box dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Note Box Note Box
ID mbbajjgefpenmkkhcnmmnoodlbcbfnmp
URL Resmi https://chromewebstore.google.com/detail/note-box/mbbajjgefpenmkkhcnmmnoodlbcbfnmp
Deskripsi A chrome extension to add notes/todos based on URL
Ukuran File 1.57 MB
Jumlah Instalasi 125
Versi Saat Ini 2.0
Terakhir Diperbarui 2021-03-28
Tanggal Publikasi 2021-02-07
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Mehul Lakhanpal
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.codedrops.tech/products/note-box
Bahasa yang Didukung 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"
}