Web Notes

Allows user to stick notes for specific url.

What is Web Notes?

Web Notes is a Chrome extension developed by https://sunnysinghdev.blogspot.com, and its main feature is "Allows user to stick notes for specific url.".

Extension Screenshots

screenshot

Download Web Notes Extension CRX File

Download Web Notes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Web Notes Web Notes
ID lhoaebkagfpaglcedmehlkbmchagmimj
Official URL https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj
Description Allows user to stick notes for specific url.
File Size 37.45 KB
Installation Count 254
Current Version 0.1
Last Updated 2018-01-19
Publish Date 2018-01-18
Rating 5.00/5 Total 1 Ratings
Developer https://sunnysinghdev.blogspot.com
Payment Type free
Supported Languages 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"
            }
        }
    }
}