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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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