Chrome Note Keeper

Chrome Note Keeper: keep notes on specific websites pages.

ما هو Chrome Note Keeper؟

Chrome Note Keeper هو إضافة Chrome تم تطويرها بواسطة Alessandro Pietrantonio، والميزة الرئيسية لها هي "Chrome Note Keeper: keep notes on specific websites pages.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Chrome Note Keeper

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

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

                        Keep notes on every website page and read it whenever you want!
This extension give you the ability to write down notes about a specific web page and save it to Chrome storage.
A little badge near the extension icon notify you the presence of a note.

CHANGELOGS:

--- v1.0 ---
- Updated manifest file
- Fixes on background

--- v0.5 ---
- Fixes on icon badge

--- v0.4 ---
- Added icon badge to notify the presence of notes

--- v0.3 ---
- Added import/export to options page
- Fixes on options page
- Larger textarea on popup
- Fixes on popup

--- v0.2 ---
- Textarea label fixed

--- v0.1 ---
- First release                    

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

الاسم Chrome Note Keeper Chrome Note Keeper
ID llocbjbocnpindmhcankkhiidpfaiedp
عنوان URL الرسمي https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp
الوصف Chrome Note Keeper: keep notes on specific websites pages.
حجم الملف 31.8 KB
عدد التثبيتات 311
النسخة الحالية 1.0
آخر تحديث 2022-04-22
تاريخ النشر 2020-07-04
تقييم 4.00/5 مجموع تقييمات 1
المطور Alessandro Pietrantonio
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/pietrantonio91/chrome-note-keeper
عنوان صفحة المساعدة https://alessandropietrantonio.it/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Note Keeper",
    "version": "1.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/notekeeper16.png",
            "32": "icons\/notekeeper32.png",
            "64": "icons\/notekeeper64.png",
            "128": "icons\/notekeeper128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_page": "options.html",
    "description": "Chrome Note Keeper: keep notes on specific websites pages.",
    "icons": {
        "16": "icons\/notekeeper16.png",
        "32": "icons\/notekeeper32.png",
        "64": "icons\/notekeeper64.png",
        "128": "icons\/notekeeper128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}