context-note

This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…

ما هو context-note؟

context-note هو إضافة Chrome تم تطويرها بواسطة Jim Chan، والميزة الرئيسية لها هي "This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة context-note

قم بتنزيل ملفات الامتداد context-note بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to manage the websites link that are important. However, in some specific scenes such as reading an article or browsing some key information, we also need to mark down the specific sentence and its context. When reviewing these notes, we can simply jump back to that sentence rather than reading the whole page again, where this extension is to extract the text and location information of these notes.                    

معلومات أساسية عن التمديد

الاسم context-note context-note
ID enmeffcefbiehghanidhebgiccljmncl
عنوان URL الرسمي https://chromewebstore.google.com/detail/context-note/enmeffcefbiehghanidhebgiccljmncl
الوصف This extension is a note-taking tool that help users take notes on the web with their context. Most of the time we use bookmark to…
حجم الملف 533 KB
عدد التثبيتات 1,177
النسخة الحالية 1.3.10
آخر تحديث 2022-05-19
تاريخ النشر 2021-09-24
تقييم 4.75/5 مجموع تقييمات 4
المطور Jim Chan
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/betterRunner/context-note
عنوان صفحة المساعدة https://github.com/betterRunner/context-note/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "context-note",
    "version": "1.3.10",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Context Note"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/main.js"
            ],
            "css": [
                "content-scripts\/main.css",
                "content-scripts\/main.44bddb14.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*"
            ]
        },
        {
            "resources": [
                "\/assets\/element-icons.9c88a535.woff",
                "\/assets\/element-icons.de5eb258.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "activeTab",
        "storage"
    ]
}