Web Notes

Allows user to stick notes for specific url.

ما هو Web Notes؟

Web Notes هو إضافة Chrome تم تطويرها بواسطة https://sunnysinghdev.blogspot.com، والميزة الرئيسية لها هي "Allows user to stick notes for specific url.".

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

screenshot

تحميل ملف CRX للإضافة Web Notes

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

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

                        Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.                    

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

الاسم Web Notes Web Notes
ID lhoaebkagfpaglcedmehlkbmchagmimj
عنوان URL الرسمي https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj
الوصف Allows user to stick notes for specific url.
حجم الملف 37.45 KB
عدد التثبيتات 254
النسخة الحالية 0.1
آخر تحديث 2018-01-19
تاريخ النشر 2018-01-18
تقييم 5.00/5 مجموع تقييمات 1
المطور https://sunnysinghdev.blogspot.com
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Notes",
    "version": "0.1",
    "description": "Allows user to stick notes for specific url.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Toggle the helpcenter screen",
            "global": true
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+9",
                "mac": "Command+Shift+9",
                "chromeos": "Ctrl+Shift+9",
                "linux": "Ctrl+Shift+9"
            }
        }
    }
}