Web Notes

Allows user to stick notes for specific url.

Web Notes là gì?

Web Notes là một tiện ích mở rộng Chrome được phát triển bởi https://sunnysinghdev.blogspot.com, và tính năng chính của nó là "Allows user to stick notes for specific url.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web Notes

Tải xuống các tệp mở rộng Web Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web Notes Web Notes
ID lhoaebkagfpaglcedmehlkbmchagmimj
URL Chính Thức https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj
Mô tả Allows user to stick notes for specific url.
Kích Thước Tệp 37.45 KB
Số Lần Cài Đặt 254
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-01-19
Ngày Phát Hành 2018-01-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://sunnysinghdev.blogspot.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}