Web Notes

Allows user to stick notes for specific url.

Was ist Web Notes?

Web Notes ist eine Chrome-Erweiterung, die von https://sunnysinghdev.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Allows user to stick notes for specific url.".

Erweiterungsscreenshots

screenshot

Web Notes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Notes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Web Notes Web Notes
ID lhoaebkagfpaglcedmehlkbmchagmimj
Offizielle URL https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj
Beschreibung Allows user to stick notes for specific url.
Dateigröße 37.45 KB
Installationsanzahl 254
Aktuelle Version 0.1
Letztes Update 2018-01-19
Veröffentlichungsdatum 2018-01-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://sunnysinghdev.blogspot.com
Zahlungsart free
Unterstützte Sprachen 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"
            }
        }
    }
}